$(document).ready(function(e) {

	//$('#product-image a').lightBox();

	$('#more-info-link').fancyZoom({width:800, height:600});
	$('#catalogue-link').fancyZoom({width:360, height:320});
	$('#callback-link').fancyZoom({width:300, height:200});

	$('#thumbs img').click(function(e) {
		e.preventDefault();
		img = $(this).attr("src").replace(".jpg", "a.jpg");
		$("#placeholder img").replaceWith('<img src="'+img+'" alt="" style="width:376px;" />');
	});

	$("p label.required").append(' <strong><font color="#FF0000">*</font></strong> '); 

});