$(function() {
	 /*$('#livechat').hover(function() {
	 $(this).css('width','180px');
	 $('#ico').hide();
	 $('#chatbody').show();
	 },
	 function() {
	 $(this).css('width','30px');	
	 $('#ico').show();
	 $('#chatbody').hide();
	 });*/
	if($.browser.msie && $.browser.version<='6.0') {
	$(window).scroll(function() {
	$('#livechat').css('top',$(document).scrollTop()+'px');
	});
	}
	$('#YLetter li').hover(function() {
	 $(this).addClass('current');
	 $(this).find('ul').show();
	},
	function() {
     $(this).removeClass('current');
	 $(this).find('ul').hide();
	});

	$('#nav li').hover(function() {
	$(this).find('ul').show();
	},
	function() {
	$(this).find('ul').hide();
	});

	$('form[name=subscribe]').submit(function() {
	   var reg = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;  
			
	   if($('.emailinput').val()=='')
	   {
	   alert('Please enter email address');
	   $('.emailinput').focus();
	   return false;
	   }
	   
	   if(!reg.test($('.emailinput').val()))
	   {
	   alert('Please enter valid email address');
	   $('.emailinput').focus();
	   return false;
	   }
	   return true;
	});
})
