
$(function() {
			
	$('#tMenu a').hover(
		function() {
			$(this).find('img').attr("src","/templates/main/images/menu/"+$(this).attr("rel")+"_b.jpg");
		},
		function() {
			if(!$(this).hasClass("selected")) {
				$(this).find('img').attr("src","/templates/main/images/menu/"+$(this).attr("rel")+"_a.jpg");
			}
		}
	);
	
	preload_images("/templates/main/images/menu/home_b.jpg","/templates/main/images/menu/who_is_the_vgt_b.jpg","/templates/main/images/menu/our_priorities_b.jpg","/templates/main/images/menu/gorse_the_weed_b.jpg","/templates/main/images/menu/community_led_approach_b.jpg","/templates/main/images/menu/publications_b.jpg","/templates/main/images/menu/links_b.jpg","/templates/main/images/menu/contact_b.jpg");
	
	h = $("#tContentRight").height();
   	h = (h < $("#tContentMiddle").height() ? $("#tContentMiddle").height() : h);
   	h = (h < $("#tContentRight").height() ? $("#tContentMiddle").height() : h);
	$("#tContentMiddle").height(h);
	
	prev = -1;
	$("a[rel^=gallery_]").each(function(){
		val = $(this).attr("rel").substr(8);
	   	if(val != prev) {
	      
			$('a[rel=gallery_'+val+']').lightBox();
		    prev = val; 
			   
	  	}
	})
	
	$('a[rel=lightbox]').lightBox();
	
	var params = {
		base: "/templates/main/flash/",
		wmode: "transparent"
	};

	swfobject.embedSWF("/templates/main/flash/banner.swf", "tBanner", "795", "200", "8.0.0", "", "", params);
		
});
