// JavaScript Document

$(document).ready(function() {

	$('#popshowc a.close').click(
    	function() {
            $('#overlay').hide();
        	$('#popshowc').hide();

        	return false;
        }
    );
    $('div.showcase ul li a.showcbox').click(
        function() {
            $('#popshowc div.cont').empty();
            $('#popshowc div.cont').addClass('contloading');
			$('#overlay').show();
        	$('#popshowc').show();
        	
        	var phpstring = 'action=get-showcase&id=' + $(this).attr('rel');
            $.ajax({
                type: "POST",
                url: "aj_dialer.php",
                dataType: 'json',
                data: phpstring,
                //Evento di riuscita
                success: function(ret) {
                    $('#popshowc div.cont').removeClass('contloading');
                    $('#popshowc div.cont').html(ret.msg);
                }
            });

        	return false;
        }
    );

	$('ul.advs li div.slideshow').cycle({
		fx:'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	$('div.bottomshow').cycle({
		fx:'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 1.5 * 1000
	});
	
});

