$(function() {
	
	$('.tab').hover(
		function () {
			$('.menu_item', $(this)).slideDown(200);
			$('.header', $(this)).css("background","transparent url('../images/2010/images/topnav_06.png') no-repeat  right");
			$(this).css("z-index","9999");			
		},
		function () {
			$('.menu_item', $(this)).slideUp(200);			
			$('.header', $(this)).css("background","transparent url('../images/2010/images/topnav_11.png') no-repeat right");
			$(this).css("z-index","99");						
		}
	);
	
	$('#searchForm input').click(function() { $('#searchForm input').val(''); });
	$('#searchForm input').blur(function() { 
								   
		if ($('#searchForm input').val() == "") $('#searchForm input').val('Search, Keyword, Product Code');
	});	
	
});

function selectShippingCountry(obj){
	window.location = "/checkout.php?xCmd=s1&xExtra=shipping&xCountry="+obj.value
}

