/*Start jQuery Block*/
$(document).ready( function()
{

/*Mouse overs for slider buttons*/
$("#bttn_left").hover(
	function () {$(this).attr('src','images/bttn_left_on.png');
	},
	function () {$(this).attr('src','images/bttn_left_off.png');
	});

$("#bttn_right").hover(
	function () {$(this).attr('src','images/bttn_right_on.png');
	},
	function () {$(this).attr('src','images/bttn_right_off.png');
	});
});
