/* /faith/application.js */

$(function(){
	$('#menu li').hover(
		function(){
			var offset = $(this).offset();
			$(this).children('.dropdown').css({top:offset.top+40,left:offset.left}).fadeIn(100);
		},function(){
			$(this).children('.dropdown').fadeOut(300);
		}
	);
	
	$('#pagecontent [class*=station]').hide();
	$('#pagecontent .stationAL').show();
});

function showStations(id){
	$('#pagecontent [class*=station]').hide();
	$('#pagecontent .station'+id).show();
}