$(document).ready(function(){
	var baseurl=jQuery.url.attr("protocol")+'://'+jQuery.url.attr("host")+'/';
	
	$('#product_navi_btns ul li').bind('mouseover',function(){
		$(this).prev('.submenu').show();
	});
	$('#product_navi_btns ul li').bind('mouseout',function(){
		$(this).prev('.submenu').hide();
	});
	
	$('.submenu').bind('mouseover',function(){
		$(this).show();
	});
	$('.submenu').bind('mouseout',function(){
		$(this).hide();
	});
	
	$('.submenu').hide();
	
	$('#product_navi_btns ul li.main_category').bind('click',function(){
			var atr = $(this).attr('alt');
			window.location =baseurl+'index.php/product/'+($('li.main_category').index(this)+1);
	});
	
	$('.submenu li').bind('click',function(){
		var title = $(this).html();
		var alt = $(this).attr('alt');
		
		/*
		$('.product_desc_content').load("product/get/"+$(this).attr('alt'),function(){
			//$print = $('<div id="print" alt="'+alt+'" style="font-size:11px;float:right">Save/Print</div>');
			//$('#product_desc h2').append($print);
		});*/
		window.location =baseurl+'index.php/product/p/'+alt;
	});
	
	$('#product_chemicil img').bind('mouseover',function(){
		$(this).attr('src',''+baseurl+'images/product/chemsel_button_m.png');
	});
	
	$('#product_chemicil img').bind('mouseout',function(){
		$(this).attr('src',''+baseurl+'images/product/chemsel_button.png');
	});
	

		
});

