
/* Copyright (c) 2009 WCBOE / Rob Krater */
$(function() {
	$('a#tb_newsLink','#tab').bind('click',function(event){loadNews();return false;});	
	$('a#tb_eventsLink','#tab').bind('click',function(event){loadEvents();return false; });	
	$('a#tb_linksLink','#tab').bind('click',function(event){loadLinks();return false; });	 
	$('#weather').load('http://www.wcboe.org/control/_wcboe/ajax.front.php',{ t: "w"}).hide().fadeIn('slow');
	$('#toolbar').click(function(){		
		if ($('#hidden').is(':hidden')) {
			$('#footer').animate({"height": 200}, {duration: "slow" });
			$('#hidden').slideDown('slow');
		} else {
			$('div#footer').animate({"height": 20}, {duration: "slow" });
			$('#hidden').slideUp('slow');
		}
	});	
	
	$('#media').html('').flash({
	swf: 'http://www.wcboe.org/assets/monoslideshow2.swf',
	params: {allowScriptAccess: "always"},
	flashvars: {showRegistration: "false",dataFile: 'photogallery/frontpage/monoslideshow.xml', showLogo:false,showVersionInfo:false},
	width: 450, height: 300, bgcolor:'#CEDFE9',id:'photoGallery',name:'photoGallery'}
	).css('margin-bottom','10px').fadeIn("slow");	
	
	$('li',"#importantPerson").each(function(ip_index){
		$(this).bind("click", function() {
			if(ip_index >= importantPerson.length) ip_index=0;
			$(this).html('<img src="assets/images/li_importantW.gif" />').siblings().html('<img src="assets/images/li_important.gif" />');
			var person = importantPerson[ip_index].split("|");
			var html = '<img src="resources/images/people/' + person[0] + '_front.jpg" alt="' + person[1] +'"/><h2>' + person[1] + '</h2>' + person[2];
			$("#importantPerson_div").fadeOut("slow",function(){	
				$("#importantPerson_div").html(html).fadeIn("slow");
			});			
			return false;
		});		
	});		
	$("#importantPerson_div").everyTime("5s",function(i) {
		ip_index += 1;
		if(ip_index >= importantPerson.length) ip_index=0;
		var person = importantPerson[ip_index].split("|");
		var html = '<img src="resources/images/people/' + person[0] + '_front.jpg" alt="' + person[1] +'"/><h2>' + person[1] + '</h2>' + person[2];
		$(this).fadeOut("slow",function(){	
			$(this).html(html).fadeIn("slow");
		});
		$('li',"#importantPerson").eq(ip_index).html('<img src="assets/images/li_importantW.gif" />').siblings().html('<img src="assets/images/li_important.gif" />');
	});
	if($.browser.msie && $.browser.version=="6.0"){
		positionTheFooter();  
		$(window).bind("resize", function(){  
			positionTheFooter();  
		}).bind("scroll", function(){positionTheFooter();});
		$('#footer').bind("resize", function(){positionTheFooter();});
	}		
	makeAccordion();
});
function loadNews() {
	$('#tabContainer','#tabs').html('<img src="assets/images/ajax-loader.gif" />').load('control/_wcboe/ajax.front.php',{ t: "n"}).hide().fadeIn('slow');
}
function loadEvents() {
	$('#tabContainer','#tabs').html('<img src="assets/images/ajax-loader.gif" />').load('control/_wcboe/ajax.front.php',{ t: "e"}).hide().fadeIn('slow');
}
function loadLinks() {
	$('#tabContainer','#tabs').html('<img src="assets/images/ajax-loader.gif" />').load('control/_wcboe/ajax.front.php',{ t: "l"},makeAccordion).hide().fadeIn('slow');
}
function makeAccordion() {	
	$("div.menu_head","#accordion").click(function()
	{
		$(this).next("div.menu_body").toggle(300).siblings("div.menu_body").slideUp("slow");
	});
}
function positionTheFooter(){
	var top = parseInt($(window).height() + $(document).scrollTop() - $('#footer').height());
	$('#footer').css({  
      "position" : "absolute",
      "top" : top
    });
}
function getInternetExplorerVersion(){
  var rv = -1; // Return value assumes failure.
  if (navigator.appName == 'Microsoft Internet Explorer')
  {
    var ua = navigator.userAgent;
    var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
    if (re.exec(ua) != null)
      rv = parseFloat( RegExp.$1 );
  }
  return rv;
}