// home page buttons
$('.btnArea, .videoBtnArea').mouseover(function() {
	$(this).parent().animate({backgroundPosition: "0 -23px"}, 25, "linear"); // move the background image
	$("~ .text",this).animate({top: "-24px"}, 25, "linear"); // move the text into view
}).mouseout(function() {
	$(this).parent().animate({backgroundPosition: "0 0"}, 25, "linear");
	$("~ .text",this).animate({top: "0"}, 25, "linear");
});

// home page buttons
$('.btnArea').click(function() {
	window.location = $("~ .text",this).children("p").children("a").attr("href");
});

$('table.financials').each(function(index){
    $('tr:odd td', this).each(function(index){
		$(this).css("background","#FBF9F5");
	  });
  });

$(".accordion").accordion({ collapsible: true, active: 'none', autoHeight: false, header: 'h2', animated: false });

// home page buttons
$('.callToAction').click(function() {
	window.location = $("h4",this).children("a").attr("href");
});

$("a.videos").fancybox({
	'transitionIn'	:	'fade',
	'transitionOut'	:	'fade',
	'speedIn'		:	300, 
	'speedOut'		:	200
});

