$(document).ready(function(){
	
	$(".project_item .link a, .project_item h2 a").bind('click',function(){
		
		var url 		= $(this).attr('href');
		var title		= $(this).attr('title');
		var projectId 	= $(this).parent().parent().attr('id');
		var winId		= 'PWin';
		var winObj		= '#'+winId;
		
		$(winObj).remove();
		$('body').append('<div id="'+winId+'"><iframe src="'+url+'?modalWin=true"></iframe></div>');
		
		$(winObj).dialog({
			title:		title,
			width:		'800px',
			height:		'460',
			resizable:	false,
			draggable:	false,
			modal:		true
		});
		
		return false;
	});
	
	
	$('.jcmsGallery_list a').prettyPhoto();
	
	$('img.jqLightbox').parent('a').addClass('jqLightbox');
	$('a.jqLightbox').prettyPhoto();
	
	
	
	$('#slide').pslide({
		delay: 5000
		,url: $('#slide').attr('rel')
		,onInitFirstImage: function( img, config ) { img.hide(); img.fadeIn('slow'); }
	});
	
	
	// Attivazione dello slide-show nella pagina.
	//if ( $('#shwContent').length > 0 ) $('#shw').s3Slider({ timeOut: 6000 });
	
});
