jQuery(document).ready(function($) {


$('#master_box img').css({'cursor':'pointer'});

$('#master_box img').each(function(index){

	var src = $(this).attr('src');
	var new_src = src.replace('.jpg', '_on.gif');
	$('body').append('<img style="display:none;" />').attr('src',new_src);

	$(this).hover(
		function () {

			$(this).attr('src',new_src);
			
		}, 
		function () {

			var new_src = src.replace('_on.gif', '.jpg');
			$(this).attr('src',new_src);
			
		}
	);

});




});



