$(document).ready(function() {
	if($('#test')[0].offsetWidth == 1) {
	  $('.market h2 a, .cta h3 a').each(function() {
		string = $(this).text();
		filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
		$(this).html('<img src="/images/headers/home/' + filename + '.gif" alt="' + string + '" />');
	  });
	  $('.market h2 a img').attr({'width':174,'height':38});
	  $('.cta h3 a img').attr({'width':215,'height':15});
	  msgString = $('#mainMessage h2').text();
	  $('#mainMessage h2').html('<img src="images/headers/home-headline.gif" alt="'+ msgString + '" height="94" width="500" />');
	}
	$('#nav').superfish({
	  autoArrows: false,
	  dropShadows: false
	});
	$('.market').hover(
		function() {
			$(this).children('h2').children().css("border-color","#cd080e");
		},
		function() {
			$(this).children('h2').children().css("border-color","#d3d3d3");					
	});
	$('.cta').mouseover(function() {
		$(this).toggleClass('ctaHover');					 
	}).mouseout(function() {
		$(this).toggleClass('ctaHover');											 
	}).click(function(){
	  	window.location=$(this).find("a").attr("href"); return false;
	});
	var date = $('.copyrightDate').text();
	var year = new Date().getFullYear();
	if (year > date) {
  		$('.copyrightDate').text(year);
	} 
	$('img[rel]').overlay({top: '55%'});
})