/*
var fx= {
	init:function(){
		$('email').addEvent('focus',function(){
		if($('email').getProperty('value')=='votre adresse e-mail'){
			$('email').setProperty('value','');
		}
	});
	
	$('email').addEvent('blur',function(){
		if($('email').getProperty('value')==''){
			$('email').setProperty('value','votre adresse e-mail');
		}
	});
	}
}
window.addEvent('domready',function(){fx.init();});
*/
$(document).ready(function(){
	$('.s_tags').hover(function(){$('.themes_wrapper').css('display','block');},function(){$('.themes_wrapper').css('display','none');});
});

function setLocation(location){
	window.location.replace(location);
}