$(document).ready(function() {

	/* Nav Rollovers */
	$(".btn").hover(
	 function() {  this.src = this.src.replace("_0","_1");$(this).css("cursor","pointer"); },
	 function() {  this.src = this.src.replace("_1","_0"); } 
	);

});

