// JavaScript Document

$(function(){	
					
			// Tabs
				$('#tabs').tabs();
				$('#tabs').height(500);
				
			// Sub Content Accordian
				jQuery.easing.def = 'easeInOutExpo';
				$(".subContent").hide();
				//$(".accordion div.first").slideToggle(2000);
				//$(".accordion h3.first").addClass("active");		
				$(".accordion h3").click(function(){
				$(this).next(".subContent").slideToggle(1200)
				.siblings(".subContent:visible").slideUp(1200);
				$(this).toggleClass("active");
				$(this).siblings("h3").removeClass("active");
				});	
								
			// End	
			})


jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox()
  
})

$(document).ready(function(){

	$("#CountrySelector").hover(function() {
		$("#CountrySelectorList").stop(true, true).fadeIn(140);
	    }, function() {
		$("#CountrySelectorList").stop(true, true).fadeOut(180);
	});


});


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}