$(document).ready(function(){
	
	// Scroll Pane 
	$("#pane1, #pane2, #pane3, #pane4, #pane5, #pane6, #pane7").jScrollPane({
		showArrows:true
	});
		
	// Rollover Animation for Navigation
	$("#links a").hover(function() {
		$(this).next("em").animate({opacity: "show", bottom: "-45"}, "100");
	}, function() {				
		$(this).next("em").animate({opacity: "hide", bottom: "65"}, "50");
	});
	
	// LightBox
	$("#gallerySolMaps a").lightBox();
	$("#galleryGames a").lightBox();
	$("#galleryFT a").lightBox();	
	
});