var themeOpen=false;
function toggleTheme() {
	if(themeOpen){
		$("#themeList").hide();
		themeOpen=false;
	}
	else{
		$("#themeList").show();
		themeOpen=true;
	}
}
function showTheme() {

	$("#themeList").show();
	themeOpen=true;	
}
function hideTheme() {

	$("#themeList").hide();
	themeOpen=false;	
}
function initTheme(){

	$("#themeBloc").hover(showTheme,hideTheme);


}