$(function() {
	$('#products_menu li').hover(
		function(){
			$(this).addClass('menu_hover');
		},
		function(){
			$(this).removeClass('menu_hover')
		}
	);
	$('#products_menu li').click(function(){
		if( $(this).find('a').attr('href') == '#' ){
			if( $(this).find('ul').css('display') == 'none' ){
				$(this).find('ul').slideDown();
			}
			return false;
		}else {
			window.location.href = $(this).find('a').attr('href');
			return true;
		}
	});
});


