$(document).ready(function(){

	//products arrow
	$("li#product a").hover(
		function() { 
			$(this).find("img").attr("src","./images/arrow_sel.gif");
		},
		function() {
			if(! $(this).parent().hasClass("current"))
				$(this).find("img").attr("src","./images/arrow.gif");
	});
});
