$(function () {
		
	//ROLLOVERS	
	$('.rollover').hover(function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
		
	}, function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
	});
	
	//FANCYBOX
	$("a.group").fancybox({ 
				'zoomSpeedIn': 300, 
				'zoomSpeedOut': 300,
				'centerOnScroll' : true,
				'overlayShow': false,
				'overlayShow' : true,
				'overlayOpacity' : 0.7,
				'hideOnContentClick': false,
				'padding' : 10,
				'frameWidth' : 800,
				'frameHeight' : 620 
				});
	

	
});//End of Function Call


