$(document).ready(function() {
    render();
	
	$(window).resize(function() {
	  render();
	  positionWaterMark();
	});
	
	positionWaterMark();
	
    DD_belatedPNG.fix('#focus,#logo_gigantic,#reel,#work,#buzz,#thinkbig,#brands,#ballyhoo,#reach,.workclose,.workborder');

});

function render(){

	if( $(window).height() > 500 && $(window).width() > 900 ){
	
		$('body').css("font-size","12px");
	
	}else{
	
		$('body').css("font-size","11px");
	
	}

}

function positionWaterMark(){
	
	if( $('#watermark') ){
	
		var top = $('#page').height() + 66;
		var pageHeight = $(document).height();
		
		if( pageHeight > top ){
			top = pageHeight - 100;
		}
	
		$('#watermark').css('top',top);
		
	}
	
}
