$(document).ready( function() {
	function min_width() {
		if ( $.browser.msie && $.browser.version < 7 ) {
			$(document.body).width( ( ( document.documentElement.clientWidth || document.body.clientWidth ) < 1000 ) ? '1000px' : '100%' );
		}
	};
	
	$(window).load( min_width ).resize( min_width );

	var ntop = $( 'table.content' ).height() + $( 'table.content' ).offset().top - 320;
	var nleft = $( 'table.content' ).offset().left - 85;
/*	
	$( '#cigar' ).css({
		left: nleft,
		margin-top: -300,
		position: 'absolute',
		zIndex: '4'
	}).show();
*/	
	$( 'img[src$=.png], td.tl, td.tr, td.bl, td.br, #flash' ).ifixpng();
	
	/*$(window).resize( function() {
		if ( $(window).width() < 1006 ) {
			$( '#rubric_pic' ).hide();
		} else {
			$( '#rubric_pic' ).show();
		}
	});*/
});

