$(document).ready(function(){
/* ==========================================================================
		IE6 Warning
===========================================================================*/
if ($.browser.msie && $.browser.version.substr(0,1)<7) {
	$('body').prepend('<div style="background: #f0e26a; color: #000; text-align: center; padding: 10px 0;">It would appear that you are using Internet Explorer 6. Unfortunately, our website requires a modern browser in order to display correctly.<br /><a href="http://windows.microsoft.com/en-GB/internet-explorer/products/ie/home" target="_blank">Internet Explorer</a> | <a href="http://www.mozilla.com/firefox/" target="_blank">Firefox</a> | <a href="http://www.google.co.uk/chrome" target="_blank">Chrome</a></div>')
}


/* ==========================================================================
		Parallax
===========================================================================*/
	$('html').scrollTop(1);
	$('nav').localScroll(800);
	
	$('#about').parallax("50%", 903, 0.6, true);
	$('#about .trunks').parallax("50%", 1500, 0.8, true);
	
	$('#styling').parallax("50%", 1980, 0.5, true);
	$('#styling .china').parallax("50%", 3300, 0.6, true);
	
	$('#events').parallax("50%", 3007, 0.6, true);
	$('#events .records').parallax("50%", 4000, 0.6, true);	
	
	$('#props').parallax("50%", 3914, 0.5, true);
	$('#props .knight').parallax("50%", 4920, 0.9, true);
	$('#props .chairs').parallax("50%", 4925, 1.5, true);		


/* ==========================================================================
		Modal Tabs
===========================================================================*/
function modalTabs(){
	// default show/hide
	$('.tabItems .item').not(':first').hide();
	$('#tabNav a:first').addClass('selected');
	
	$('#tabNav a').click(function(e){
		// index of clicked
		var index = $('#tabNav a').index(this);

		// Set selected
		$('#tabNav a.selected').removeClass('selected');
		$(this).addClass('selected');
		
		// Show/hide 
		$('.tabItems .item').hide().eq(index).show();
		
		e.preventDefault();
	});
};
modalTabs();


/* ==========================================================================
		Activate Modal
===========================================================================*/
$('.moreInfo a, body.home .tabNav a').live('click',function(e){
	var url = $(this).attr('href');
	populateGTOverlay(url);
	e.preventDefault();
});

// POPULATE and show
function populateGTOverlay(url){
	// Fade in overlay
		var top = $(window).scrollTop() + 100 + "px";
		var mLeft = $('.gtOverlayContainer').outerWidth() / 2 + "px";

	$('.gtOverlay').fadeTo('fast', 0.6, function() {
		
		// activate loading animation
		$('.gtOverlay .loading').activity({segments: 12, width: 5.5, space: 6, length: 20, color: '#fff', speed: 1.5, align: 'left', valign: 'top'}).show();	
		
		// ajax in content	
		$('.gtOverlayContainer').css({'top' : top, 'left' : '50%', 'marginLeft' : '-'+mLeft}).load(url + ' .ajax', function(){
			// attach hidden input with full page url to be used by other scripts
			$('.gtOverlayContainer').append('<input type="hidden" id="pageURL" value="' + url + '" />') 
				// insert close button
				.prepend('<div class="close" title="Close">Close</div>'); 

			// remove loading animation
			$('.gtOverlay .loading').activity(false); 
			
			// Make function calls before showing
			modalTabs();
			callFancybox();
			
			// Show content
			$('.gtOverlayContainer').fadeIn('fast', function() {
				$('.gtOverlayContainer .close').fadeIn('fast');
			});
		
		});

	});
};


$('.gtOverlayContainer .close').live('click',function(){
	$('.gtOverlayContainer, .gtOverlay').fadeOut('fast');
	$('.gtOverlayContainer').html('');
});

/* ==========================================================================
		Facts
===========================================================================*/
function randomFacts(){
	  facts =
		[
			"We’ve styled events at fabulous venues such as The Truman Brewery to G&amp;T's Becks Lounge!",
			"Lots of our customers end up becoming our friends and some are even our friends to start with",
			"We've staged large-scale events for the likes of Leeds City Council for the past ten years",
			"Last year we ordered over 5000m of fabric",
			"Our favourite secret vintage / junk shop is Swiss Cottage just off Burley Road in Leeds",
			"We’ve been planning and styling events for 25 years collectively",
			"G&amp;T’s Bobby founded the Leeds Asian Festival which is now in its 16th year",
			"Although we love vintage, modern style with splashes of bright colours are also big for us"
		]
	$('.fact img').hover(function(){
			var fact = facts[Math.floor(Math.random()*facts.length)]
			$(this).parent().find('.factText').html(fact);
			$(this).parent().find('.factBox').fadeIn('slow')
		}, 
		function(){
			$('.factBox').fadeOut('fast');
		}
	);
}
randomFacts ();





/* ==========================================================================
		Fancybox
===========================================================================*/
function callFancybox(){
	$('.imgContent a').fancybox();
} 
callFancybox();

/* ==========================================================================
		Back Buttons
===========================================================================*/
  $('.back a, .back').click(function(e) {
    window.history.go(-1);
    e.preventDefault();
  });


}); // end of document ready


