$(document).ready(function() {

	// gestione IMG HOVER
	$(".icsmMouseOver").each(function() {
		var src = $(this).attr('src');
		var extension = src.substring(src.lastIndexOf('.'),src.length);
		$(this).mouseover(function() {
			$(this).attr('src',src.replace(extension,'-on' + extension));
		});
		$(this).mouseout(function() {
			$(this).attr('src',src);
		});
	});
	
	 //Fancybox
	$("a.iframe").fancybox({
		  'titleShow'		: false
		, 'overlayOpacity'	: 0.65
		, 'overlayColor'	: '#000'
		, 'padding'			: 0
		, 'centerOnScroll'  : true
		, 'width'  			: 800
		, 'height' 			: 600
	});	
});

$(window).load(function() {
	$("a.onload").trigger('click');
});
