
if (typeof console == "undefined" || typeof console.log == "undefined") var console = { log: function() {} }; 

if(!String.prototype.startsWith){
    String.prototype.startsWith = function (str) {
        return !this.indexOf(str);
    }
}

$(document).ready(function() {

	$('#navTopics').click(function() {
		  $('#subnav-topic').addClass('active');
		  $('#navTopics').addClass('open');
	});

    $('#navTopics').mouseleave(function() {
    	console.log("leave")
    	$('#subnav-topic').removeClass('active');
		$('#navTopics').removeClass('open');
    });

	$('#id_region').change(function() {
		console.log($(this).val());
		if ($(this).val() == '10') {
			 window.open('http://www.theinfoboom.com.cn/');			
		} else {
			$('#language_chooser').submit();
		}
	});

});
