function Show1()
{
	$('#morecont1').load('more4.html');
	$('#more1').fadeIn(100);
	$('#more1').css('top','200');
	$('#more1').css('left','360');
	$('#more1').css('height','310');
	$('#morecont1').css('height','285');
	$('#more1').css('width','470');
	$('#morecont1').css('width','470');
	$('#morehead').css('width','470');
}
function Hide1()
{
	$('#more1').fadeOut(100);
}

$(document).ready(function(){
	var menu_pos=$("#menu_pos").val();
	$("#submenu .button").mouseover(function(){
		if ($(this).attr("name")!="active")
			$(this).addClass("button"+menu_pos);
	});
	$("#submenu .button").mouseout(function(){
		if ($(this).attr("name")!="active")
			$(this).removeClass("button"+menu_pos);
	});

});
