$(document).ready(function() {
	
	$('#gallery a').lightBox();
	
	$("#claim").hover(
		function () {
    		$(this).attr({src : "img/tipico_home.gif"});
    		}, 
    	function () {
    		$(this).attr({src : "img/tipico.gif"});
			});
		
	});
