	$(document).ready(function() { 
		
		$("#col3-alpha").pngFix(); 
		
		$("input.type-text,input.input-text,textarea").focus(function(){

			if ($(this).hasClass("clicked")){}
			else {
				$(this).addClass('clicked');
				$(this).val("");					
			}
						
		});		

		$("a.photo-thumb").click(function(){
			var NewImage = $(this).attr("href");
			$("img#photo-large").attr("src",NewImage);
			return false;						
		});		
		
	});
	

