$(function() {
	$("#cart").click(function(){
		window.location.href = "panier.php";
	});
	$("ul#nav li").hover(function() { //Hover over event on list item
		$(this).css({ 'background' : '#009db9'}); //Add background color + image on hovered list item
		$(this).find("span").show(); //Show the subnav
		} , function() { //on hover out...
			if($(this).hasClass('current')){
				$(this).css({ 'background' : '#009db9'});
			}else{
				$(this).css({ 'background' : 'none'});
			}
			$(this).find("span").hide(); //Hide the subnav
		});

});

/*====================================================================
                                                openPopupFixedNoChrome
*/
function openPopupFixedNoChrome(url, winName, winW, winH)
{
	var winLeft = (screen.width - winW) / 2;
	var winTop = (screen.height - winH) / 2;
	windowProps = 'height=' + winH + ',width=' + winW + ',left=' + winLeft + ',top=' + winTop + ',toolbar=' + 0 + ',location=' + 0 + ',directories=' + 0 + ',status=' + 0 + ',menubar=' + 0 + ',scrollbars=' + 0 + ',resizable=' + 0;
	var thisWindow = window.open(url, winName, windowProps);
	thisWindow.focus();
}

