$(document).ready(function() {
	
	$('input[type="text"], textarea').focus(function(){ if( this.value == this.defaultValue ) { this.value = ""; }}).blur(function() { if( !this.value.length ) { this.value = this.defaultValue; } });
	
	$('.jqtransform').jqTransform();
	$("a[rel^='prettyPhoto'], .popup").prettyPhoto({show_title: false, overlay_gallery: false});
	
	$('.thumb').click(function() {
		var prod_id = $('#productId').val();
		var thumb_id = $(this).attr('id').replace('thumb-', '');
		$.ajax({
			type: "POST",
			url: '/ajaxs/getProductImage/' + prod_id + '/' + thumb_id,
			async: false,
			success: function(data) { $('#product-img img').attr('src', '/image?u=' + data + '&w=346&h=261'); }
		});
	});
	
});
