$(document).ready(function($) {

  $(".thumb-product").click(function(){
		var detailed = 	$(this).attr("href");								 
		$(".large-product").attr("src", detailed);
		return false;
	});
  
  
  
	$('#upc').focus(function(){
		if("Enter UPC Number" == $(this).val()){ 
			$(this).val("");
		}									  
	});
  
});

$(function() {
	var zIndexNumber = 1000;
	$('.bodyleft').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 1000;
	});
});

