	
$(document).ready(function(){
	
	$('a.gallery_postcard').click(function(){
		url = $(this).attr('rel');
		
		var w = 780;
		var h = 530;

		var left = parseInt((screen.availWidth/2) - (w/2));
	    var top = parseInt((screen.availHeight/2) - (h/2) - 50);
		
		window.open( url , '', 'width='+w+',height='+h+', left='+left+', top='+top+', toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=yes');
		return false;
	});
	
	$("#carousel img").addClass("cento");
	
	/*
	$("#carousel a").hide();
	$("#carousel a:eq(0)").show("fast", function () {
		$(this).next().show("fast", arguments.callee); 
	});
	*/
});


$(window).load(function(){
	if( document.getElementById('carousel') ){
		$('#carousel').Carousel(
			{
				itemWidth: 160,
				itemHeight: 160,
				itemMinWidth: 65,
				items: 'a',
				reflections: .0,
				rotationSpeed: 1.8
			}
		);
		$('#wrap_carousel').css('background-image','none');
		$('#carousel').fadeIn();
	}
});

