
(function($){
	$(function(){
		$('div#preview a').bind("click",function(){

			imgPreloader = new Image();
      
			url = $(this).attr("href");
			imgPreloader.onload = function(){
				$('div#img_big img').attr("src",url);
			}
			
			imgPreloader.src = url;	
					
			$('div#preview a').removeClass("thumb_sel");
			$(this).addClass("thumb_sel");

		  return false;
		});
	})
})(jQuery);

