(function($) {
	$(document).ready(function () {	
		
		$('#nav li').hover(
			function () {
				//show its submenu
				if ( $(this).find('ul').css('display') == 'none' ) {
					$(this).find('ul').slideDown(100);
				}
			}, 
			function () {
				//hide its submenu
				if ( $(this).find('ul').css('display') == 'block' ) {
					$(this).find('ul').slideUp(100);
				}
			}
		);
		
		$('.product h4').click(function() {
			$(this).next('div.productContent').slideToggle('fast', function() {
				$(this).parent().toggleClass('open')
			});
		});
		
		$(".productlist").click(function(){
     		//$.get("product.html");
			var id = $(this).attr('id');
			 
			 //alert(id);
			 $('#product'+id).focus().toggleClass('open');
				//$('#product'+id).next('div').toggleClass('display' == 'block');
		});

	});
})(jQuery);
