// JavaScript Document

// Alternate Images
/*	$(function() {
		$('img.photos').animate ({
			"opacity" : 1
		});
		
		$('img.photos').hover (function() {
			$(this).stop().animate ({ "opacity" : 1});
		}, function() {
			$(this).stop().animate ({ "opacity" : 1});
		});
		
	});
*/	
			
	function getLgImg(img_name,img_src) {
	document[img_name].src=img_src;
	}


