$(window).bind("load", function() { 
	$("div#gallerySlide").slideView({
	toolTip: true,
	easeFunc: "easeInOutSine", 
	easeTime: 1800 
	}) ;
});
/***************** Start Left Menu ****************/
$(document).ready(function() {
	$(".priceIncludes").bind("click", function(){
		var index = $(".priceIncludes").index(this);
		
		if ( $("#priceIncludes"+index).css("display") == "none"){
			$("#priceIncludes"+index).slideDown("slow");
		}else{
			$("#priceIncludes"+index).slideUp("slow");
		}
	});
	
	
});