jQuery(function( $ ){
		
	//EXTERNAL LINKS
	$('a.externallink').click(function(){
		window.open(this.href);
		return false;
	});
	
	//TABLE STRIPING
	$('table tr:even').addClass('evenrow');
	$('table tr:odd').addClass('oddrow');

	
	//SIFR TITLES				
	$('h1').sifr({path: 'font/', font: 'geosanslight', roY: 0, color:'#63B6E2', textTransform: 'uppercase'});
	$('span.caption').sifr({path: 'font/', font: 'AvantGarde Bk BT', roY: 0, color:'#fcfcfc'});
	$('th').sifr({path: 'font/', font: 'AvantGarde Bk BT', roY: 0, color:'#005879'});
	
	//FANCYBOX
	$("a.img-zoom").fancybox({
		'overlayShow': true,
		'overlayOpacity': 0.8					   
	});
	$("a.video-zoom").fancybox({ 
		'hideOnContentClick': true,
		'frameWidth': 640,
		'frameHeight': 400,
		'overlayShow': true,
		'overlayOpacity': 0.8
	}); 
	
	$('ul#animated-portfolio').animatedinnerfade({ 
            speed: 2000, 
            timeout:  5000, 
            type: 'sequence', 
            containerheight: '648px', 
            containerwidth: '434px', 
            animationSpeed: 15000, 
            animationtype: 'fade',
	    	//bgFrame: '/images/frame.png',
	    	controlBox: 'show',
	    	controlBoxClass: 'mycontrolboxclass',
	    	controlButtonsPath: '/images'
            //displayTitle: 'no'
      }); 


	
});