$.noConflict();
jQuery(document).ready(function($) {

/*TRENNER DER SERVICE NAVIGATION*************************************************/
	
	$("#headnav .service a").last().css('background-image', 'none');
	$("#footer .service a").last().css('background-image', 'none');

/*ACCORDION*************************************************/

	$("div.panel").css('display', 'none');
	$("#immoacc").tabs("#immoacc div.panel", {
		tabs: 'h2', 
		effect: 'slide', 
		collapsible: true,
		initialIndex: '0'
	});

/*BILD-ANIMATION*************************************************/
	
	$("#scroller").scrollable({circular: true}).autoscroll({ autoplay: true });
	
	$("#footer").css({
		"position" 	: "absolute",
		"bottom"	: "0px",
		"left"	: "0px"
	});
	
/*HIDDEN FOOTER*************************************************/	

	$("#hiddencontent").css({
		"display" 	: "none"
	});
	
	$(".openfooter").click( function() {
		$("#hiddencontent").slideToggle("fast");
	});

/*KONTAKT AUFNEHMEN*************************************************/
	
	$("#contact .option").css({
		"display" 	: "none"
	});
	
	$("#contact .button").click( function() {
		$("#contact .option").slideToggle("fast");
	});
	
	$("#contact").mouseleave( function() {
		setTimeout( function() {
			$("#contact .option").slideUp("fast");
		}, 500);
	});

/*SUBNAVIGATION*************************************************/

	$("#navi .subnav").css({
		"display" 	: "none"
	});
	$(".mainmenue li").mouseover( function() {
		$(".subnav", this).slideDown("fast");
	});
	$(".mainmenue li").mouseleave( function() {
		$(".subnav", this).slideUp("fast");
	});
	
	/*
	$("#contact").mouseleave( function() {
		setTimeout( function() {
			$("#contact .option").slideUp("fast");
		}, 500);
	});
	
	*/
	
});

/*var imgHeight = $("#scroller").find("img").css("height");
	$("#scroller").css("height", imgHeight);*/
