$(document).ready(function(){
	$('.skins h3').click(function(){
		var newtheme = $(this).attr('title');
		if(theme!=newtheme)
		{
			var dS = 'changetheme='+newtheme;
			$.ajax({
			   type: "POST",
			   url: "scripts/ferber_ajax.php",
			   data: dS,
			   cache: false,
			   success: function(msg){
				   if(msg=='ok'){window.location.reload();}
				   else {alert(msg);}
			   }
			});
		}
	});
	
	
	
});

$(window).load(function(){
    var h1 = $('.page').height()-80-20;
	if(h1>$('.page #banners_page').height()){$('.page #banners_page').height(h1);}
});
