$.noConflict();

jQuery(document).ready(function()
{
	function siteSize(m)
    { 
		var elem 	= jQuery(this);
		var toW 	= elem.width();
		var minW 	= 1000;
		var tabsW 	= 584;
		if (toW<minW) toW = minW;
		jQuery('html').width(toW);
		jQuery('body').width(toW);
		jQuery('.main').width(toW);
		jQuery('.main .tabs').css('left', (toW-tabsW)+'px');
	}		
	
    jQuery(window).resize(function(){ siteSize(); });
	jQuery(window).resize();
});
