/*********************************************************************************************************************************/
/* DOCUMENT READY CALLS **********************************************************************************************************/
/*********************************************************************************************************************************/
$(document).ready(function(){
	
	/* EXTERNAL LINKS start ***********************************************************/
	$('a[rel="external"]').click(function(){
		this.target = "_blank";
	});
	/* EXTERNAL LINKS end *************************************************************/
	
	$('html').addClass('js');

	/*contact
	if($(".token").length >0){
		$.get("/public/token.php", function( txt ){
			$(".token").append('<input type="hidden" name="ts" value="' + txt + '">');
		});
	}
	contact*/

	/* SLIDESHOW start ***************************************************************/
	var selector = '#slideshow li';
	var fade_speed = 1000;
	var slideshow = setInterval( "slideSwitch('"+selector+"',"+fade_speed+",'Next')", 5600 );
	setTimeout("$('#fl-intro').css({'background':'none'});",5000);
	setTimeout("$('#slideshow .nav').css({'z-index':100});",14500);
	/* SLIDESHOW end *****************************************************************/
	
	$('#slideshow .nav a').click(function(){
		var action = $(this).attr('rel');
		if(action =='pause'){
			clearInterval(slideshow);
			$('#slideshow .nav .play').addClass('active');
			$(this).removeClass('active');
		}else if(action=='play'){
			slideshow = setInterval( "slideSwitch('"+selector+"',"+fade_speed+",'Next')", 5000 );
			$('#slideshow .nav .pause').addClass('active');
			$(this).removeClass('active');
		}
		
	});
	
	$('#fl-intro').flash(
        { src: '/public/themes/pjs/media/intro.swf',
          width: 770,
          height: 472,
          wmode: "transparent" },
        { version: 8 });
    
		
}); //close document.ready

/*********************************************************************************************************************************/
/* DOCUMENT READY FUNCTIONS ******************************************************************************************************/
/*********************************************************************************************************************************/
//if($('#internal').length){Cufon.replace('#page-title');}
Cufon.replace('.slide-title', {
	color: '-linear-gradient(#ffffff, #cccccc)'
});

Cufon.replace('#awards h2');



/* SLIDESHOW function start *********************************************************/
function slideSwitch(s,o,d){var $a=$(s+'.active');if($a.length==0)$a=$(s+':first');if(d=='Next'||d==null){var $n=$a.next().length?$a.next():$(s+':first');}else if(d=='Previous'){var $n=$a.prev().length?$a.prev():$(selector+':last');}$a.addClass('last-active');$n.css({opacity: 0.0}).addClass('active').animate({opacity: 1.0},o,function(){$a.removeClass('active last-active');});}
/* SLIDESHOW function end ***********************************************************/
