$(document).ready(function(){

	$("#ethos").mouseover( function() { 
		$("#footerTagline").css({ backgroundImage : "url(images/tagline_we_believe.gif)" });
	} );	
	
	
	$("#portfolio").mouseover( function() { 
		$("#footerTagline").css({ backgroundImage : "url(images/tagline_striking_visuals.gif)" });;
	} );
	
	$("#polymedia").mouseover( function() { 
		$("#footerTagline").css({ backgroundImage : "url(images/tagline_music_is_moving.gif)" });
	} );	
	
	$("#services").mouseover( function() { 
		$("#footerTagline").css({ backgroundImage : "url(images/tagline_strong_message.gif)" });
	} );
	
	$("#workshop").mouseover( function() { 
		$("#footerTagline").css({ backgroundImage : "url(images/tagline_strong_message.gif)" });
	} );	
	
	$("#get_started").mouseover( function() { 
		$("#footerTagline").css({ backgroundImage : "url(images/tagline_make_it_happen.gif)" });
	} );	
	
	$("#contact_us").mouseover( function() { 
		$(this).attr({ src: "images/btn_contact_us_h.gif" });
	} );
	$("#contact_us").mouseout( function() { 
		$(this).attr({ src: "images/btn_contact_us.gif" });
	} );
	
	$("#sign_up").mouseover( function() { 
		$(this).attr({ src: "images/btn_sign_up_h.gif" });
	} );
	$("#sign_up").mouseout( function() { 
		$(this).attr({ src: "images/btn_sign_up.gif" });
	} );
		
});