
$(function() {
	/*var navLink = $("#topnav a");
	navLink.hover(
		function () {
			//navLink.css({'background' : 'url(../images/bg/mouseover.png)', 'height' : '38px !important;'});
		}, 
		function () {
		//	navLink.css({'background-image' : 'none', 'height' : '38px !important;'});
		}
	 );
	*/

	/*function cropPercent() {
		var newWidth = jQuery(this).width() - 1;
		jQuery(this).width(newWidth);
	}



	if(jQuery.browser.msie) {
	
		$('.multipleskinarea').each(function(){
			var sumColWidths = 0;
			jQuery('.multipleskinarea .base_col').each(function(){
				sumColWidths = sumColWidths + jQuery(this).outerWidth(true);
			});

			if (jQuery(this).width() < sumColWidths ){
				jQuery(this).children('.base_col').each(cropPercent);
			};
		});
		$('#mainlead').each(function(){
			var sumLeadWidths = 0;
			sumLeadWidths = jQuery('#mainlead .left').outerWidth(true) + jQuery('#mainlead .right').outerWidth(true);
			if (jQuery(this).width() < sumLeadWidths ){
				jQuery('#mainlead .left').each(cropPercent);
				jQuery('#mainlead .right').each(cropPercent);
			};
			
		});
	};*/	
	
});


