//jQuery(document).ready(function($) {
$(document).ready(function(){
		
		$('div.logo').pngFix( );
		$('div.tabLeft').pngFix( );
		$('div.tabRight').pngFix( );
		$('div.upArrow').pngFix( );
		$('div.downArrow').pngFix( );		
		
		//fontResizer('10px','12px','16px');
		
		function content_resize()  {
		
		//alert("I am an alert box!");
			
		var w = $( window );
		var H = w.height();
		var W = w.width();
			if (W <= 970) { 
			   $( '#content' ).css( {width: 990} );
			   $( '#content' ).css( {left: "50%"} );
			   $( '#content' ).css( {marginLeft: -485} );
			}else{
			   $( '#content' ).css( {width: W} );
			   $( '#content' ).css( {left: "50%"} );
			   $( '#content' ).css( {marginLeft: "-50%"} );
			}
			
			if (H < 879) { 
			   $( '#content' ).css( {top: 650} );
			}else{
			   $( '#content' ).css( {top: "75%"} );
			}			
		}

		$( window ).wresize( content_resize );
		content_resize();
		
});
