

$(window).bind('load', function () {
	
	function switcher (largeURL, largePath, largeAlt, linkId) {
		$(".promo a").removeClass("promoselected");
		$(linkId).addClass("promoselected");
		$("#largeImg").fadeOut("slow",function(){
			$("#largeImg").attr({ src: largePath, alt: largeAlt });
			$("#promolink").attr({href: largeURL});
			$('#largeImg').load(function(){
				$("#largeImg").fadeIn("slow");
			});
		});
 	};
	
	$("#1").click(function(){
		switcher("http://lumentech-usa.com/index.php?main_page=product_info&cPath=2&products_id=17","http://lumentech-usa.com/includes/templates/lumentech/images/new/promo/beambouncer.jpg","test","#1");
		return false;
	});
	
	$("#2").click(function(){
		switcher("http://lumentech-usa.com/index.php?main_page=product_info&cPath=2&products_id=12","http://lumentech-usa.com/includes/templates/lumentech/images/new/promo/aquafx.jpg","test2","#2");
		return false;
	});
	
	$("#3").click(function(){
		switcher("http://lumentech-usa.com/index.php?main_page=product_info&cPath=1&products_id=1","http://lumentech-usa.com/includes/templates/lumentech/images/new/promo/fm201.jpg","test3","#3");
		return false;
	});
});