

/***************** 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");
		}
	});
	
});

$(document).ready(function buttonActions(){	
	$("#submenu0").show();
	$(".topMenuButton").bind("mouseenter", function(){
		var submenu = $(this).attr("name") ;
		var index = $(".topMenuButton").index(this);
		if (submenu == undefined) $("#submenu0").show();
		if (index != 0){
			$(".topMenuButton").each(function(i){
				$(this).css("background", "none");
			});
			
		}
		$(".subs").each(function(i){
			$(this).hide();
		});
		
		$("#submenu"+submenu).show();
		if ($("#submenu"+submenu).text() == ""){
			$("#submenu0").show(); 
		}
	});
});