﻿$(document).ready(function() {
	/* we can comment this out */

	// are we on the homepage?
	var pathname = window.location.pathname;
	if(pathname == "/Pages/Default.aspx") {
		// on the home page clear the slogan and change the link
		$('#sloganLayout').css('background-image',"url('/SiteCollectionImages/Home%20Page/banner_homeb.jpg')");
//		$('#sloganLayout').css('background-position',"left");
		$('#sloganLayout').attr('height',"131px");
		//$('#sloganRight').html('<a id="sloganRightLink" href="/Events/AnnualMeeting/2010/Pages/default.aspx"><img src="/images/transparent.gif" /></a>');
		$('#sloganRight').css('padding','6');		
	}		

});


