/* Functions */

$(document).ready(function() {
	renderNewBody();
	$(".text, .badge").click(function() { 
      document.location.href = ".";
    });
/*
	var ua = navigator.userAgent;
	var i = ua.indexOf("OS X");
	
	if(i == -1) {
		$('.text').replaceWith('<div class="text" title="And it is written that the real papr would appear..." style="background: url(assets/images/text-min.gif);"></div>');
	} else {
	}
	if(ua.indexOf("IE") != -1) {
	}
*/
	$(window).resize(function(){
  		renderNewBody();
	});
});

function renderNewBody() {
/*
	var contentHeight = $('#paper').height();
	var windowHeight = $(window).height();
	var newCSSString;
	if(windowHeight > contentHeight) {
		newCSSString = windowHeight+"px";
	} else {
		newCSSString = contentHeight+"px";
	}
	$('body, html').css("height", newCSSString);
*/
};