/**
 * @author peter
 */

$(document).ready(function() {
	
	$("#button").hover(function(){
		
		$(this).attr('src', 'images/button_rollover.jpg');
	}, function(){
		$(this).attr('src', 'images/button.jpg');
	});
	
	
});
