var skatan = {
	init : function () {
		this.domAction();
		this.loopActors();
		this.targetLinks();
	},
	
	domAction : function () {
		$("body").addClass("js"); 
	},
	
	loopActors : function () {
		$("#actors img").hide();
		if($("#actors img").length>0){
			$('#actors').cycle({
	    		fx:     'fade',
	    		sync:    1,
				timeout: 2700,
				speed: 	 500
			});
		}
	},
		
	targetLinks : function () {
		$("a[@rel*=external]").click(function(){window.open(this.href); return false}); 
	}
	
};

$(document).ready(function() {
	skatan.init();
});