 $.fn.image = function(src){
   return this.each(function(){
      var i = new Image();
			$(i).attr('src', src);
			$(i).attr('width', '300');
	

        this.appendChild(i);
   });
}



$(document).ready(function() {
	
	$("a.thumb").click(function(event){
		event.preventDefault();
	 	$("#full_photo").html("");
		 	$("#full_photo").image(this.href);
			$("#full_photo img").attr('width', '300');
	});
        $(document).pngFix();
});	  


function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=1100,height=500,left = 440,top = 275');");
}