
/*
 Initialise slider scripts	
*/
	// execute your scripts when the DOM is ready. this is mostly a good habit
$(document).ready(function() {
		$("div.scrollHero").scrollable({circular: true, vertical: true, touch: false}).navigator("#main_navi");
		$("div.scrollFacts").scrollable({circular: true, touch: false}).navigator().autoscroll({ autoplay: true, interval: 7000 });
		$("div.scrollBp").scrollable({circular: true, touch: false}).navigator().autoscroll({ autoplay: true, interval: 7000 });			
		$("div#scrollSidekick").scrollable({circular: true, touch: false}).navigator();
	});

/*



/*
Enable Overlay plugin
*/

$(document).ready(function() {
	
	$("img[rel]").overlay();	

	// if the function argument is given to overlay,
	// it is assumed to be the onBeforeLoad event listener
	$("a[rel]").overlay({

		mask: '#ccc',
		effect: 'default',
		fixed: 'true',
		left: '0',
		speed: 'fast',
		top: '10%',

		onBeforeLoad: function() {

			 this.getOverlay().insertAfter('#main');

			// grab wrapper element inside content
			var wrap = this.getOverlay().find(".contentWrap");

			// load the page specified in the trigger
			wrap.load(this.getTrigger().attr("href"));
		},
		 onClose: function() {
   			this.getOverlay().unload();
 		}
		

	});
});


/*
Enable tab plugin
*/


	$(document).ready(function() {
		// setup ul.tabs to work as tabs for each div directly under div.panes
		$("ul.tabs").tabs("div.panes > div");
	});


/*
Show and hide country information	 
*/	 	 $(document).ready(function() {   		$('a.uk').click(function(){			hideAll();     		$('div.office-uk').show();     		$('div.northern-europe').show();     		$('img.image-northern-europe').show();			   		});   		$('a.ireland').click(function(){			hideAll();     		$('div.office-ireland').show();     		$('div.northern-europe').show();     		$('img.image-northern-europe').show();			   		});   		$('a.germany').click(function(){			hideAll();     		$('div.office-germany').show();     		$('div.northern-europe').show();     		$('img.image-northern-europe').show();				   		});   		$('a.turkey').click(function(){			hideAll();     		$('div.office-turkey').show();     		$('div.northern-europe').show();     		$('img.image-northern-europe').show();				   		});   		$('a.spain').click(function(){			hideAll();     		$('div.office-spain').show();     		$('div.southern-europe').show();     		$('img.image-southern-europe').show();			   		});   		$('a.italy').click(function(){			hideAll();     		$('div.office-italy').show();     		$('div.southern-europe').show();     		$('img.image-southern-europe').show();			   		});   		$('a.france').click(function(){			hideAll();     		$('div.office-france').show();     		$('div.southern-europe').show();     		$('img.image-southern-europe').show();			   		});		   		$('a.portugal').click(function(){			hideAll();     		$('div.office-portugal').show();     		$('div.southern-europe').show();     		$('img.image-southern-europe').show();			   		});	   		$('a.mexico').click(function(){			hideAll();     		$('div.office-mexico').show();     		$('div.southern-europe').show();     		$('img.image-southern-europe').show();			   		});	   		$('a.brazil').click(function(){
			hideAll();
     		$('div.office-brazil').show();
     		$('div.southern-europe').show();
     		$('img.image-southern-europe').show();			
   		});	
   		$('a.usa').click(function(){			hideAll();     		$('div.office-usa').show();     		$('div.north-america').show();     		$('img.image-north-america').show();			   		});				   		$('a.hongkong').click(function(){			hideAll();     		$('div.office-hongkong').show();     		$('div.asia-pacific').show();     		$('img.image-asia-pacific').show();			   		});				   		$('a.china').click(function(){			hideAll();     		$('div.office-china').show();     		$('div.asia-pacific').show();     		$('img.image-asia-pacific').show();			   		});	   		$('a.singapore').click(function(){			hideAll();     		$('div.office-singapore').show();     		$('div.asia-pacific').show();     		$('img.image-asia-pacific').show();			   		});	   		$('a.malaysia').click(function(){			hideAll();     		$('div.office-malaysia').show();     		$('div.asia-pacific').show();     		$('img.image-asia-pacific').show();			   		});	   		$('a.india').click(function(){			hideAll();     		$('div.office-india').show();     		$('div.asia-pacific').show();     		$('img.image-asia-pacific').show();			   		});			function hideAll(){	    	$('div.officesColTwo').children('div').hide();			$('div.officesColThree').children('div').hide();			$('div#officesBannerContainer').children('img').hide();		} 	});	
