jQuery.noConflict();

jQuery(document).ready(function() {

jQuery(function(){
	
	
    jQuery(".check_hover").hover(
	    function(){
		    jQuery(this).addClass('hover');		    
	    },
	    function(){
		    jQuery(this).removeClass('hover');
	    }
    );
	
//	var max = 0;
//	jQuery('.top_menu li ul').each(function(){
//	    
//	    if(jQuery(this).width() > jQuery(this).parent().width() )
//	    {
//	         max  = jQuery(this).width();	 
//	    }
//	    
//	});
	
	
	jQuery('.top_menu li ul').each(function(){	
	

		
		jQuery(this).width(jQuery(this).parent().width());
		
		
//		jQuery(this).width(jQuery(this).parent().width());
		
//		if(jQuery(this).width() > jQuery(this).parent().width() )
//	    {
//	         jQuery(this).width();	 
//	    }
//	    else
//	    {
//	        jQuery(this).width(jQuery(this).parent().width());
//	    }
	    
	});
});


});