

/***************** 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");
		}
	});
	
	$("#showImages").bind("click", function(){
		$("#picturesRest").slideDown("slow");
		$(this).hide();
		$("#hideImages").show();
	});
	$("#hideImages").bind("click", function(){
		$("#picturesRest").slideUp("slow");
		$(this).hide();
		$("#showImages").show();
	});
	
});