
$(function(){
	$("#prodGallery li a").click(function(){
	
		var url  = window.location.href;
		var base = 'lifesize-models.co.uk/custom/images/products/';
		
		if(url.indexOf("www") != -1) {
			base = "http://www." + base;
		} else {
			base = "http://" + base;
		}

		var title = $(this).attr('title');
		var href  = $(this).attr('href');
		var imageName = '';
		var html = '';
		
		//Get image details
		href = href.split(base);
		imageName = href[1];
		
		if(imageName.indexOf("/") != -1) {
			//Check if we are displaying an original
			imageName = imageName.split('/');

			if(imageName.length == 2) {
				//Display with zoom
				html = '<a href="http://lifesize-models.co.uk/custom/images/products/'+imageName[0]+'/'+imageName[1]+'" class="zoom" title="'+title+'">';
				html += '<img src="http://lifesize-models.co.uk/custom/images/products/'+imageName[1]+'" alt="'+title+'" width="300" id="placeholder" style="margin-bottom:20px;" />';
				html += '</a>';
			} else {
				//Just swop image out
				html += '<img src="http://lifesize-models.co.uk/custom/images/products/'+imageName[0]+'" alt="'+title+'" width="300" id="placeholder" style="margin-bottom:20px;" />';
			}
		} else {
			html += '<img src="http://lifesize-models.co.uk/custom/images/products/'+imageName+'" alt="'+title+'" width="300" id="placeholder" style="margin-bottom:20px;" />';
		}
		
		//Change image
		$("#mainImagePlaceholder").html(html);
		
		//Re-fire zoom
		$(".zoom").jqzoom();
	});
});
