$(document).ready(function(){
	
	// Branding banner resize
	function imageresize(){
		var pageHeaderWidth = $('header[role="banner"]').width();
		if ((pageHeaderWidth) < '1038'){
			$('#branding-wide').attr('id','branding');
		} else {
			$('#branding').attr('id','branding-wide');
		}
	}
	// For when document first loads 
	imageresize();
	// For when browser is resized 
	$(window).bind("resize", function() {
		imageresize(); 
	});

	// Home page slideshow
	if ($('#slideshow').length != 0) {
		// Get FF Matrix field_row_index from the current random image id
		var currentImageIndex = $('#slideshow img').attr("id");
		var slideShowImages = "/home/-slideshow/";
		$('#slideshow').load(slideShowImages, function() {
			// Once the full set of images have loaded, set the startingSlide to match the one being replaced
			$("#slideshow").cycle({timeout:4000,startingSlide:currentImageIndex}); 
		});
	}
	
	// Location images
	if ($('.slides').length != 0) {
		// Hide extra location images if more than two
		$('.slides a:nth-child(2)').nextAll().hide();
		// Location details lightbox
		$('.slides a').colorbox({
			height:'420',
			transition:'none',
			current:'Image {current} of {total}',
			onLoad: function() {
				$('#cboxLoadedContent img').css('opacity','0');
			},
			onComplete: function() {
				$('#cboxLoadedContent img').css('opacity','1');
			}
		});
	}
	
});
