jQuery(document).ready(function(){		
			jQuery("#news-items li").css('width',jQuery(".news-slider").width()/4)
			jQuery(".slider-counter").css('width',jQuery(".news-slider").width()/4)
			
			 jQuery(".header ul li").mouseenter(function(){ 
				if (jQuery(this).attr('class')!='login')
					{
						jQuery(this).children("ul").slideDown(600);		
					}
		
			 });
			 
			 jQuery(".header ul li").mouseleave(function(){ 
			    if (jQuery(this).attr('class')!='login')
				{
					jQuery(this).children("ul").hide();		
				}
						
			 });

			 
			 jQuery(".header ul li.login span").click(function(){ 
				jQuery(this).next().toggle();			
			 });
			 
		 });

