// ================ Ajout redimentionnement ====================================

$(document).ready(function(){
    //If the User resizes the window, adjust the #container height
	$(window).bind("resize", resizeWindow);
	function resizeWindow( e ) {
		//var newWindowHeight = $(window).height();
		//$("#container").css("min-height", newWindowHeight );
		//alert($(window).height());
		changeTheme('Urbanears');
	}
});
// ================ Ajout redimentionnement ====================================	
