function loadColor(key){
	$("#loading").show();
	$('#colorName').val(key).search(); 
	$("#loading").hide();
}

function round(){
    $('#main').corner();
    $('#left').corner('tl');
    $('#right').corner('tr');
    $('#bottom').corner('bottom');
    if(window.location.hash != '') {
    	$.post("/i18n/setlang/",{'language': window.location.hash.substring(1,4)});
    	loadColor(window.location.hash.substring(4).replace(/[-_]+/g, ' '));
    }
}