$(document).ready(function(){
	//////////////////////////////////////////
	//  Menu
	/////////////////////////////////////////
	$('#menuul li').each(function(){	
		$(this).hover(function(){
			var img = $(this).find("img");
			alt = img.attr("alt");
			img.attr({'src':'/menu/hover_'+alt});
		},
		function(){
			var img = $(this).find("img");
			alt = img.attr("alt");
			img.attr({'src':'/menu/flat_'+alt});

		})
	});


	//////////////////////////////////////////
	//  Shipping Billing
	/////////////////////////////////////////
	$('#sameAs').click(function(){	
		var $fields = new Array('name','company','address','address_2','city','state','state_txt','country','phone','zip');
		for (var q in $fields) {
			$('#shipping_'+$fields[q]).val($('#billing_'+$fields[q]).val());
		}
		jQuery("#shipping_country").trigger('change');
	});
	
	
	//////////////////////////////////////////
	//  Item Images
	/////////////////////////////////////////
	$(".itemOtherImages a").click(function(){
		of = $(this).attr("href");
		$("#bigImage").attr("src",of);
		$("#bigImage").load();		
		return false;
	});
	
	$(".item-img").each(function(){
    $img_h = $(this).children('img').height();
    $diff = 158 - $img_h;
    $(this).children('img').css("margin-top", $diff/2);	
	});

});