var Site = window.Site || {};

(function($) {
    $(function() {
	// BACKGROUND STRETCHER APPLIED TO DOCUMENT
	$(document).bgStretcher({
	    images: [THEME_PATH + 'assets/images/bkg_main.jpg'], imageWidth: 1200, imageHeight: 910
	});

	// IMAGE MODALS
	$("a[rel='modal']").colorbox({ maxWidth: "90%" });

	// MODAL POPUPS TO CHANGE TERRITORY AND LANGUAGE
	$(".territories").colorbox({width: "600", height: "220", inline: true, href: "#Territories", transition: "none"});
	$(".languages").colorbox({width: "600", height: "200", inline: true, href: "#Languages", transition: "none"});
		

	$("#HomepageSlidesController").jFlow({
	    controller: ".controls", // must be class, use . sign
	    slideWrapper : "#HomepageSlidesController", // must be id, use # sign
	    slides: "#HomepageSlides",  // the div where all your sliding divs are nested in
	    selectedWrapper: "SlideSelected",  // just pure text, no sign
	    width: "700px",  // this is the width for the content-slider
	    height: "350px",  // this is the height for the content-slider
	    duration: 500,  // time in miliseconds to transition one slide
	    prev: ".previous", // must be class, use . sign
	    next: ".next", // must be class, use . sign
	    auto: true
	});
    });
	
})(jQuery);
