jQuery(document).ready(function($){

	$(".morelink").click(function(){
		$(this).hide();
		$(this).parent().children(".subhide").slideDown('normal');
		$(this).parent().children(".expand").show();
	});
	
	$(".expand").click(function(){
		$(this).hide();
		$(this).parent().children(".subhide").slideUp('normal');
		$(this).parent().children(".morelink").show();	
	});
	
	
	$(".samplemenu").hover(function() {
		
		var sid = $(this).attr("id");
		t = setTimeout(function(){
			
			$(".samplemenu").removeClass("inpage");
			$(".samplemenu[id="+ sid +"]").addClass("inpage");      
			
			$(".subMenu").hide();
			$(".subMenu[title="+ sid +"]").show();
		},150);
	}, function() {
		clearTimeout(t)
	});

});
