//remove the suggested donation amt on click and restore it on blur if they don't enter new value
$(document).ready(function(){
	var amt;
	$('input.donation').focus(function() {
		amt = $(this).val();
		$(this).val('');
	}).blur(function() {
		if (this.value == '') {$(this).val(amt);};
	});
});

//look inside
$(window).load(function(){
	var $width = $('.lookinside img#product-image').width();
	$('.lookinside').width($width);
	$('.lookinside ul').width($width);
	$('.lookinside ul li a').width($width);
	$('.lookinside ul li:first').addClass('first-page');
	$('.lookinside ul li:first a').addClass('firstpage');
});
