$(document).ready(function() {
	if($("#frontpage").html() != null){
		$(window).bind("resize", function(){
			if($("#frontpage").html() != ""){
				window.location.href = window.location.href;	
			}
	});
	}else{
		$(window).unbind("resize");
	}
});
