$(document).ready(function(){
		var winX = $(window).width();
		var winY = $(window).height();
		var centeredBars = (winX/2)-360; //470 = 940px / 2 (width of wrapper div diveded by two)
		$("#bottomHolder").css({top: (winY-35), left: centeredBars});
		
		var quoteLocal = (winX / 2) - 400; 
		$("#wesly_quote").css({top: '425px', left: quoteLocal});
		$("#wesly_quote").show();
		$("#wesly_quote").click(function(){
			$.nyroModalManual({content: '<div style="width: 420px; height: 600px;"><img src="/images/wesly.jpg" /></div>'});
		});
		
		$("#bbm_logo").css({top: (winY-55), left: (winX-41)});
		$("#bbm_logo").show();
		
		$("#bbm_logo_img").tipsy({gravity: 'e', fade: true});
		$("#bottomHolder").show();
		$("#redBar").fadeIn(function(){
			$("#greenBar").fadeIn(function(){$("#blueBar").fadeIn();});
		});

		$(".bottomBar").hover(function(){
			var didBounce = false;
			var theId = this.id;
			var realThis = "#"+theId;
			if ($(realThis).css("top") != "-351px"){
				if ($.browser.msie)
					$(realThis).stop(true, true).css({color: '#000000', borderColor: '#000000'});
				else
					$(realThis).stop(true, true).animate({color: '#000000', borderColor: '#000000'}, 350);
			}
		}, function(){
			var didBounce = false;
			var theId = this.id;
			var realThis = "#"+theId;
			if ($(realThis).css("top") != "-351px"){
				if ($.browser.msie)
					$(realThis).stop(true, true).css({color: '#FFFFFF', borderColor: '#FFFFFF'});
				else
					$(realThis).stop(true, true).animate({color: '#FFFFFF', borderColor: '#FFFFFF'}, 350);
			}
		});
		
		$(".bottomBar").click(function(){
			var theId = this.id;
			var realThis = "#"+theId;
			repos();
			if ($(this).css("top") == "-351px"){
				//Close bar
				$(realThis+"_content").hide();
				$(realThis).stop(true, true).animate({height: '30px', top: '0px'}, 150);
			}else{
				//Close all others before opening the next
				$(".bottomBar").hide();
				$(".bottomBar").stop(true, true).animate({height: '30px', top: '0px'}, 150);
				$(".bottomBar").stop(true, true);
				//Open Bar
				$(realThis).stop(true, true).animate({height: '381px', top: '-351px'}, 150, function(){$(realThis+"_content").fadeIn();});
			}
		});
	});
	
	//Reposition the colour bars if the window gets resized
	$(window).bind('resize', function() {repos();});
	
	//Reposition absolute/relative elements
	function repos(){
		var winX = $(window).width();
		var winY = $(window).height();
		var centeredBars = (winX/2)-360; //470 = 940px / 2 (width of wrapper div diveded by two)
		$("#bottomHolder").css({top: (winY-30), left: centeredBars});
		$("#bbm_logo").css({top: (winY-55), left: (winX-41)});
		var quoteLocal = (winX / 2) - 400; 
		$("#wesly_quote").css({top: '425px', left: quoteLocal});
		
		$(".bottomBar").each(function(i){
			if ($(this).css("top") != "-351px"){
				$(this).css({top: 0});
			}
		});
		
	} 
	
	function launchTakeout(){
		$.nyroModalManual({content: '<div style="width: 760px; height: 475px;"><img src="/images/bbmTakeoutFNL.jpg" /><br /><a href="/bbm_takeoutmenu.pdf">Download PDF</a></div>'});
	}
