function loadImage(imgsource) {
	imgPreloader = new Image();
	$('#bigImage').attr('src', "../../" + imgsource);
	imgPreloader.onload = function(){
		setTimeout('showimage(imgPreloader.width,imgPreloader.height)',800);
	};		
	imgPreloader.src = "../../" + imgsource;
}


function showimage(width,height){
	$('#imageHolder').animate({'width':width,'height':height},'medium',function(){
		$('#bigImage').fadeIn("medium");
	});
}
		
$(document).ready(function(){
	$(".prodThumb").bind('click',function(event) {		
		event.preventDefault();
		if (!($('#imageHolder').hasClass("protected"))) {
			$('#imageHolder').css({height: $('#bigImage').height(),width: $('#bigImage').width()})
			$('#imageHolder').addClass('holderBG');
		}
		hr = $(this).attr('href');
		$(this).blur();
		$('#bigImage').fadeOut('medium' ,function(){
			loadImage(hr);
		});
	});
});