// JavaScript Document
$(document).ready(function(){
$("ul#menu li").hover(
			function() {
				$(this).animate({backgroundColor: '#FF0', color: '#000','width':'85px'}, 300);
			},
			function() {
				$(this).animate({backgroundColor: '#000', color: '#FFF','width':'63px'}, 100);
			}
		);

$("ul#sub_menu li").hover(
			function() {
				$(this).animate({backgroundColor: '#FF0','width':'85px'}, 300);
			},
			function() {
				$(this).animate({backgroundColor: '#EFEFEF','width':'63px'}, 100);
			}
		);
$("ul.product_list_ul div").hover(
			function() {
				$(this).animate({backgroundColor: '#FF0'}, 300);
			},
			function() {
				$(this).animate({backgroundColor: '#EFEFEF'}, 100);
			}
		);

$("ul.product_list_ul div").click(function() {
				$(this).nextAll('li').show(500);
			});

$("ul.product_list_ul li").hover(
			function() {
				$(this).animate({backgroundColor: '#FF0'}, 300);
			},
			function() {
				$(this).animate({backgroundColor: '#EFEFEF'}, 100);
			}
		);
						   })
function show_product(p_sn){
window.open('product_detail.php?p_sn='+p_sn, 'product'+p_sn, config='height=377,width=520,scrollbar=0,menubar=0,toolbar=0,location=0,status=0')
}
