

$(function(){
	$('ul li:last-child').addClass('last');
	$('ul li:first-child').addClass('first');

	$('a img.reflect').css('cursor', 'pointer').bind('click', function(){
		document.location = $(this).parents('a').attr('href');			  
	})
	
	$('a img.reflect').mouseover(function(){
		$(this).addClass('over');
	});
	
	$('a img.reflect').mouseout(function(){
		$(this).removeClass('over'); 
	});
	
});