Cufon.replace('#en #top-links a',{hover: true});

$(function(){
	$('#filter-section .input').click(function(){
		if($('#filter').is(':hidden')){
			$('#filter').slideDown();
		}
	});
	$('body').click(function(){$('#filter').is(':visible') && $('#filter').hide();});
	$('#filter').click(function(e){e.stopPropagation()});
	
	$('#filter input:checkbox:not(#c0)').click(function(){
			$('#c0').removeAttr('checked');
	});
	$('#c0').click(function(){
		$(this).attr('checked','checked');
		$('#filter input:checkbox:not(#c0)').removeAttr('checked');
	});
	$('#filter input:checkbox').click(function(){
		$('#filter button').show(500);
		//chkRestOfWorld();
	});
	$('A.login.link').click(function(){
		$('#login-section FORM').submit();
		return false;
	});
	
	$('A.popup').click(function(){popupWindow($(this).attr('href'),720,800); return false;})
	
});

//onclick="chkRestOfWorld(this)"

function chkRestOfWorld()
{	
// add comma seperated country code for rest of world in restOfWorldCountryId
	var restOfWorldCountryId = "96,183,200";
	if ( document.getElementById('c10000').checked == true) {		
		document.getElementById('hrestofworld').value=restOfWorldCountryId;
	}
	else {
		document.getElementById('hrestofworld').value="";
	}

/*	document.getElementById('c99').checked = false;
if ( document.getElementById('c10000').checked == true){
	document.getElementById('c99').checked = true;
}
*/
}