/*!
 * ICM Javascript Library
 * http://innovativecare.com/
 *
 * Copyright 2010, Joe Hallock
 *
 * Date: Sat Oct 09 16:07 2010 -0500
 */


// Define a local copy of jQuery

$(document).ready(function() {
	positionFooter();
	$(window)
		.scroll(positionFooter)
		.resize(positionFooter);
		function positionFooter() {
			var docHeight = $(document.body).height() - $("#sticky-footer-push").height();
			if(docHeight < $(window).height()){
            var diff = $(window).height() - docHeight;
            if (!$("#sticky-footer-push").length > 0) {
              $("#footer").before('<div id="sticky-footer-push"></div>');
            }
            $("#sticky-footer-push").height(diff);
		} 
	}
	
	//Secondary Vertical Tab conent -----------------------------------------
	
	// Hide all content execpt for tab 1
		$('#tabs1').show();
		$('#tabs2').hide();
		$('#tabs3').hide();
		$('#tabs4').hide();
		$('#tabs5').hide();
		$('#tabs6').hide();
		$('#tabs7').hide();
		$('#tabs8').hide();
		$('#tabs9').hide();
	// Show Tab 1 on mouse click
		$('.tab1').click(function () {
			$('#tabs1').show('fast');
			$('#tabs2').hide();
			$('#tabs3').hide();
			$('#tabs4').hide();
			$('#tabs5').hide();
			$('#tabs6').hide();
			$('#tabs7').hide();
			$('#tabs8').hide();
			$('#tabs9').hide();
			$('div#secondaryContentLinks li').removeClass("selectedTab");
			$('#tab1').addClass("selectedTab");
			return true;
		});
	// Show Tab 2 on mouse click
		$('.tab2').click(function () {
			$('#tabs1').hide();
			$('#tabs2').show('fast');
			$('#tabs3').hide();
			$('#tabs4').hide();
			$('#tabs5').hide();
			$('#tabs6').hide();
			$('#tabs7').hide();
			$('#tabs8').hide();
			$('#tabs9').hide();
			$('div#secondaryContentLinks li').removeClass("selectedTab");
			$('#tab2').addClass("selectedTab");
			return true;
		});
	// Show Tab 3 on mouse click
		$('.tab3').click(function () {
			$('#tabs1').hide();
			$('#tabs2').hide();
			$('#tabs3').show('fast');
			$('#tabs4').hide();
			$('#tabs5').hide();
			$('#tabs6').hide();
			$('#tabs7').hide();
			$('#tabs8').hide();
			$('#tabs9').hide();
			$('div#secondaryContentLinks li').removeClass("selectedTab");
			$('#tab3').addClass("selectedTab");
			return true;
		});
	// Show Tab 4 on mouse click
		$('.tab4').click(function () {
			$('#tabs1').hide();
			$('#tabs2').hide();
			$('#tabs3').hide();
			$('#tabs4').show('fast');
			$('#tabs5').hide();
			$('#tabs6').hide();
			$('#tabs7').hide();
			$('#tabs8').hide();
			$('#tabs9').hide();
			$('div#secondaryContentLinks li').removeClass("selectedTab");
			$('#tab4').addClass("selectedTab");
			return true;
		});
	// Show Tab 5 on mouse click
		$('.tab5').click(function () {
			$('#tabs1').hide();
			$('#tabs2').hide();
			$('#tabs3').hide();
			$('#tabs4').hide();
			$('#tabs5').show('fast');
			$('#tabs6').hide();
			$('#tabs7').hide();
			$('#tabs8').hide();
			$('#tabs9').hide();
			$('div#secondaryContentLinks li').removeClass("selectedTab");
			$('#tab5').addClass("selectedTab");
			return true;
		});
	// Show Tab 6 on mouse click
		$('.tab6').click(function () {
			$('#tabs1').hide();
			$('#tabs2').hide();
			$('#tabs3').hide();
			$('#tabs4').hide();
			$('#tabs5').hide();
			$('#tabs6').show('fast');
			$('#tabs7').hide();
			$('#tabs8').hide();
			$('#tabs9').hide();
			$('div#secondaryContentLinks li').removeClass("selectedTab");
			$('#tab6').addClass("selectedTab");
			return true;
		});
	// Show Tab 7 on mouse click
		$('.tab7').click(function () {
			$('#tabs1').hide();
			$('#tabs2').hide();
			$('#tabs3').hide();
			$('#tabs4').hide();
			$('#tabs5').hide();
			$('#tabs6').hide();
			$('#tabs7').show('fast');
			$('#tabs8').hide();
			$('#tabs9').hide();
			$('div#secondaryContentLinks li').removeClass("selectedTab");
			$('#tab7').addClass("selectedTab");
			return true;
		});
	// Show Tab 8 on mouse click
		$('.tab8').click(function () {
			$('#tabs1').hide();
			$('#tabs2').hide();
			$('#tabs3').hide();
			$('#tabs4').hide();
			$('#tabs5').hide();
			$('#tabs6').hide();
			$('#tabs7').hide();
			$('#tabs8').show('fast');
			$('#tabs9').hide();
			$('div#secondaryContentLinks li').removeClass("selectedTab");
			$('#tab8').addClass("selectedTab");
			return true;
		});
	// Show Tab 9 on mouse click
		$('.tab9').click(function () {
			$('#tabs1').hide();
			$('#tabs2').hide();
			$('#tabs3').hide();
			$('#tabs4').hide();
			$('#tabs5').hide();
			$('#tabs6').hide();
			$('#tabs7').hide();
			$('#tabs8').hide();
			$('#tabs9').show('fast');
			$('div#secondaryContentLinks li').removeClass("selectedTab");
			$('#tab9').addClass("selectedTab");
			return true;
		});
		
});



// Fade function for homepage quick links

$(function() {
   $('.Column3BoxGray').hover( function(){
      $(this).css('background-color', '#e3e2e2');
	  $(this).css('border-color', '#bababa');
   },
   function(){
      $(this).css('background-color', '#f1f1f1');
	  $(this).css('border-color', '#cdcdcd');
   });
});

$(function() {
   $('.Column3BoxRed').hover( function(){
      $(this).css('background-color', '#db9da4');
	  $(this).css('border-color', '#ca6b76');
   },
   function(){
      $(this).css('background-color', '#e6c7cb');
	  $(this).css('border-color', '#db9da4');
   });
});

$(function() {
   $('.Column3BoxGreen').hover( function(){
      $(this).css('background-color', '#bae57f');
	  $(this).css('border-color', '#67b002');
   },
   function(){
      $(this).css('background-color', '#c5e796');
	  $(this).css('border-color', '#84D90D');
   });
});
