jQuery(document).ready(function($) {    
    $(".lightbox").lightbox({
        fitToScreen: true,
        imageClickClose: false,
        fileLoadingImage: '/scripts/jquery-lightbox/images/loading.gif',
		fileBottomNavCloseImage: '/scripts/jquery-lightbox/images/closelabel.gif'
    });
    $('a[rel*=facebox]').facebox();
    $('#country-select .selected').mouseover (
    	function () {
    		$('#country-select ul').toggleClass('hide');
    	}
    )
    $('#country-select').mouseleave (
    	function () {
    		$('#country-select ul').addClass('hide');
    	}
    )
    $('#country-select ul').mouseleave (
    	function () {
    		$('#country-select ul').addClass('hide');
    	}
    )
    $('#country-select li').click (
    	function () {
    		$('#country-select ul').addClass('hide');
    	}
    )
    
    $(function() {
    	$("ul.tabs").tabs("div.tab-contents > div", {effect: 'fade', fadeOutSpeed: 400});
    });
    
    if ($.browser.msie && $.browser.version < 9) {
        $(".tab-switcher .tab-content .title").textShadow();
        $("#nav li.active a span span").textShadow();
    };
    
    $(function() {
        $('a[rel*=external]').click( function() {
            window.open(this.href);
            return false;
        });
    });
    
})
