//PRELOAD IMAGES
$(document).ready(function(){
//DEFAULTS
var content = false; //TOGGLE CONTENT WINDOW (TRUE: up / FALSE: down)
var page = ""; //WHICH PAGE IS BEING VIEWED
var lock = false; //IF MAIN NAVIGATION IS LOCKED
var title = 1.0;
var title_delay = 1000;
alignNavigation();
	
	//FADE CENTER + SHOW NAVIGATION
	$("#center-button").click( function() {		
		$("#center").fadeOut("slow");
		setTimeout(function() { $("#navigation").fadeIn() }, 1000);
	});
	
	//NAVIGATION LOGO CLICK
	$("#home").click( function () {
		if(content) {
			toggleContent();
			title_delay = 1000;
		}
		lock = (content==true)  ? lock=true : lock=false;
	});
	$("#home-btn").live('click', function () {
		if(content) {
			toggleContent();
			title_delay = 1000;
		}
		lock = (content==true)  ? lock=true : lock=false;
	});  
	
	//MAIN NAVIGATION
	$("#navigation ul a").click( function () {
		if(!lock) {
			title_delay = 1000;
			toggleContent();
			setTimeout(function() { showContent() }, 100 ); 
			lock = true;
		}
	});
	
	//IN-PAGE NAVIGATION
	$(".page-nav a").live('click',function () {
		title_delay = 200;
		setTimeout(function() { showContent() }, 100 ); 
	});
	
	//COMPANY
	$("#company-reel a").live('click',function () {
		$(this).colorbox({href: $(this).attr('href'), iframe:true, open:true, innerWidth:681, innerHeight:380, initialWidth:100, initialHeight:100, opacity:.8 });
		return false;
	});
	
	//CREDITS
	$("#credits-years-list li a").live('click', function() {
		$(".selected").removeClass();
		$(this).addClass("selected");
		var year = $(this).attr('rel');
		var data = $("#credits-" + year).html();
		$("#credits-year-content").html(data);
	});
	
	//MOMENTS 
	$("#moments-content li a").live('mouseover', function() {
		$(this).find(".moment-title").show();
	});
	$("#moments-content li a").live('mouseout', function() {
		$(this).find(".moment-title").hide();
	});	
	$("#moments-content li a.modal").live('click', function() {
		$(this).colorbox({href: $(this).attr('href'), iframe:true, open:true, innerWidth:500, innerHeight:375, initialWidth:100, initialHeight:100, opacity:.8 });
		return false;
	});	
		
	/* FUNCTIONS */
	//TOGGLE CONTENT WINDOW
	function toggleContent() {
		content = (content==true) ?  content=false : content=true; //DETERMINE IF WINDOW IS UP OR DOWN
		if(!content) $("#content").fadeOut(250);
		setTimeout(function() { $("#container").slideToggle(500, function () { if(content) $("#content").fadeIn(); }); }, 250);
	}
	
	//LOAD CONTENT
	function showContent() {
		page = window.location.hash.substring(1);
		$("#content").fadeOut(1000, function() {	
			$("#content").load(page + ".html").fadeIn(1000, function() {
				setTimeout(function() { $("#title-fade").animate({opacity: 0.6}, 1200); }, title_delay); //FADE IN TITLE
			});
			
		});
	}
	//CASTING REFERER
	
	var referer = document.referrer.indexOf('casting.html');
	if(referer != -1) {
		$("#center-button").click();
	}
	
	
	//IMAGE PRELOAD FUNCTION
	(function($) {
	  var cache = [];
	  // Arguments are image paths relative to the current page.
	  $.preLoadImages = function() {
	    var args_len = arguments.length;
	    for (var i = args_len; i--;) {
	      var cacheImage = document.createElement('img');
	      cacheImage.src = arguments[i];
	      cache.push(cacheImage);
	    }
	  }
	})(jQuery)
	jQuery.preLoadImages("/assets/img/are-growing.jpg", "/assets/img/credit-quote-salt-lake.jpg", "/assets/img/credits-quote-kriegel.jpg", "/assets/img/credits-quote-slate.jpg", "/assets/img/daily-news.jpg", "/assets/img/home.jpg", "/assets/img/is-personal.jpg", "/assets/img/is-right-here.jpg", "/assets/img/moments-ft-1.jpg", "/assets/img/moments-ft-2.jpg", "/assets/img/moments-ft-3.jpg", "/assets/img/moments-2m2mm.jpg", "/assets/img/moments-2m2mm8.jpg", "/assets/img/moments-overlay.png", "/assets/img/moments-true-life.jpg", "/assets/img/nav-company.jpg", "/assets/img/nav-contact.jpg", "/assets/img/nav-credits.jpg", "/assets/img/nav-moments.jpg", "/assets/img/nav-our.jpg", "/assets/img/nav-story.jpg", "/assets/img/our-company.jpg", "/assets/img/our-contact.jpg", "/assets/img/our-credits.jpg", "/assets/img/our-moments.jpg", "/assets/img/our-story.jpg", "/assets/img/page-next.jpg", "/assets/img/page-our-company.jpg", "/assets/img/page-our-contact.jpg", "/assets/img/page-our-credits.jpg", "/assets/img/page-our-moments.jpg", "/assets/img/page-our-story.jpg", "/assets/img/page-previous.jpg", "/assets/img/park-slope-large.jpg", "/assets/img/park-slope.jpg", "/assets/img/produces.jpg", "/assets/img/speak-for-themselves.jpg", "/assets/img/submit.jpg");
	
});

$(window).resize(function() { alignNavigation(); });

/* FUNCTIONS */
function alignNavigation() {
	$content_width = 426;
	$window_width = $(window).width()/2;
	$nav_buffer = $window_width-$content_width;
	$("#navigation").css('right',$nav_buffer);
}

function css_browser_selector(u){var ua = u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1;},g='gecko',w='webkit',s='safari',h=document.getElementsByTagName('html')[0],b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?g+' ff2':is('firefox/3')?g+' ff3':is('gecko/')?g:/opera(\s|\/)(\d+)/.test(ua)?'opera opera'+RegExp.$2:is('konqueror')?'konqueror':is('chrome')?w+' chrome':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):is('mozilla/')?g:'',is('j2me')?'mobile':is('iphone')?'iphone':is('ipod')?'ipod':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win':is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js']; c = b.join(' '); h.className += ' '+c; return c;}; css_browser_selector(navigator.userAgent);
