$(document).ready(function () { 
	$('.menu .submenu').hide();
	
	//get the default top value
	var top_val = $('.menu li a').css('left');

	//animate the selected menu item
	$('.menu li.selected').children('a').stop().animate({left:10}, {easing: 'easeOutQuad', duration:500});		

	$('.menu li').hover(
		function () {
			$(this).find('.submenu').show();
		},
		function () {
			$(this).find('.submenu').hide();
		}		
	);
	reload_shadow();
});


function reload_shadow(){
$(':text').each(function(){
	var title = $(this).attr('alt');
	if (title!=''){
		//$(this).val(title);
		$(this).blur(function(){
			if ($(this).val()==''){
				$(this).val(title);
			}
		})
		$(this).focus(function(){
			if (title==$(this).val())$(this).val('');
		})
				
	}
	$(this).blur();
});	
}


function enter(){
 $('#frm-panel').submit();
}

function open(id){
	$('.cab-hide').hide();	
	$('.cab').show();
	if (id==1){
		$('#cab-email').toggle();
		$('#cab-email-hide').toggle();
	}
	if (id==2){
		$('#cab-password').toggle();
		$('#cab-password-hide').toggle();
	}
	if (id==3){
			$('#cab-price').toggle();
			$('#cab-price-hide').toggle();	 
	}
}

function sub(id){
	$('#sub'+id).submit();
}
