
$(window).load(function(){
    
});


$(document).ready(function(){ 
	
	$(function() {
            $(this).bind("contextmenu", function(e) {
                e.preventDefault();
                 alert("Copyright Gatti and Friends | 2011");
            });
        }); 
		
	Shadowbox.init();
	
	Shadowbox.setup("a.video",  {
    	height:     360,
        width:      640,
        continuous: true
    });
	
    Shadowbox.setup("a.audio", {
    	height:     100,
        width:      320,
        continuous: true
    });

	//jquery lavori scrollable
	 	$('#preload').remove();
        $('.contentslideshow .scrollable').scrollable({
        	circular: true,
			clickable: false,
			nav:'ul.items',
			size: 1,
			speed: 1000
        }).navigator().autoscroll({
		interval: 3000		
		});

		//jquery photogallery scrollable
	   $('#photogallery_article .scrollable').scrollable({
			loop: true,
			circular: true, 
			mousewheel: true,
			clickable: false,
			nav:'ul.items',
			itemCount: 5,
			speed: 1000
		});
		
		
		// For Attachment 
		$("a[href*=.pdf]").addClass("pdf");
		$("a[href*=.jpg], a[href*=.gif], a[href*=.png]").addClass("jpg");
		$("a[href*=.swf], a[href*=.fla]").addClass("swf");
		$("a[href*=.txt],  a[href*=.xls], a[href*=.doc], , a[href*=.rtf], , a[href*=.pps]").addClass("doc");
		$("a[href*=.mpg], a[href*=.mpeg], a[href*=.avi], a[href*=.mv2], a[href*=.mov], a[href*=.mp4], a[href*=.wmv]").addClass("video");
		$("a[href*=.zip], a[href*=.rar], a[href*=.ace], a[href*=.tar.gz], a[href*=.tgz]").addClass("zip");
		$("a[href*=.mp3], a[href*=.aiff], a[href*=.wav], a[href*=.ogg], a[href*=.wma]").addClass("audio");
		$("a[href*=.it], a[href*=.com], a[href*=.eu], a[href*=.org], a[href*=.net]").addClass("link");
		$("a[href*=@]").addClass("email");
		
		
		$.tools.validator.localize("en", {
			'*': 'Required field',
			':email': 'Valid email',
			'[required]': 'Required field'
		});
		
		$("form#newsletter").validator({ lang: 'en' });
	 
 
});


