$(document).ready(function() {

	//------------------
	// INPUT fields default values
	//------------------

	$('INPUT[@onempty]').focus(
		function() {
			var obj = $(this).get(0);
			if(obj.value == $(this).attr('onempty')) { obj.value = ''; }
		}
	)

	$('INPUT[@onempty]').blur(
		function() {
			var obj = $(this).get(0);
			if(obj.value == '') { obj.value = $(this).attr('onempty'); }
		}
	)
	

});

$(document).ready(function() {   
	
	
	$("#country").change( function() {
		if($(this).val() != ''){
			window.location = $(this).val();
		}
	});

});

function fixDottedLinksOutline(domChunk) { $(domChunk).focus(function(){this.blur();}); }


//----------------------
// FAQ
//----------------------

function SwitchFAQ(iQuestion) {
	fixDottedLinksOutline('#Q' + iQuestion + ' a');
	$('.Question a').removeClass('Sel');
	$('.Answer').each(function(){
		if(this!=$('#A' + iQuestion).get(0)) { $(this).hide('fast'); }					   
	});
	$('#Q' + iQuestion + ' a').addClass('Sel');
	$('#A' + iQuestion).show('fast');
}


