

/***************** 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");
		}
	});
	
});
