
$(document).ready(function() {


	// Image Rollover
	IMAGEWORK.rollover.init();


	
	// Slide show
	setInterval( "slideSwitch()", 5500 );


	// Lightbox
    $('#gallery a').lightBox();
	
	
	
	$("#endorsements_button").hover(
		function() { $("#tagbar").attr({src:"/images/buttons/tag-endorse.jpg"});  },
		function() { $("#tagbar").attr({src:"/images/buttons/tag-blank.jpg"}); }
	);
	
	$("#mail_button").hover(
		function() { $("#tagbar").attr({src:"/images/buttons/tag-mail.jpg"});  },
		function() { $("#tagbar").attr({src:"/images/buttons/tag-blank.jpg"}); }
	);
		
	$("#photos_button").hover(
		function() { $("#tagbar").attr({src:"/images/buttons/tag-photo.jpg"});  },
		function() { $("#tagbar").attr({src:"/images/buttons/tag-blank.jpg"}); }
	);
			
	$("#radio_button").hover(
		function() { $("#tagbar").attr({src:"/images/buttons/tag-radio.jpg"});  },
		function() { $("#tagbar").attr({src:"/images/buttons/tag-blank.jpg"}); }
	);
				
	$("#signs_button").hover(
		function() { $("#tagbar").attr({src:"/images/buttons/tag-signs.jpg"});  },
		function() { $("#tagbar").attr({src:"/images/buttons/tag-blank.jpg"}); }
	);

	
});