$(document).ready(function() {

	$('.lightbox').click(function(event) {
	
		event.preventDefault();
		var href = $(this).attr("href");
		var title = $(this).attr("title");
		$('#product_main_photo').html('<img src="' + href + '" alt="' + title + '" />');
		
	});

});
