$(document).ready(function(){
	
	$('#logo').bind('click', function(e){
		window.location = '/';
	});
	
    $('.jqOver').bind('mouseover', function(e){        
		$(this).attr({src: $(this).attr('jqOv')});
	});
	$('.jqOver').bind('mouseout', function(e){
		$(this).attr({src: $(this).attr('jqUp')});
	});
	$('.jqOver').bind('click', function(e){
		$(this).attr({src: $(this).attr('jqUp')});
	});
});
