var updateDimensions = function() {
	
	var bodyWidth = $(document).width();
	if (bodyWidth > 1599) {
		$('div.bg1').removeAttr('style');
	}
	else {
		$('div.bg1').attr('style', 'background: none;');
	}
	
};

$(document).ready(function() {
	
	$('div.block').not(':first').hide();
	$('div.but > div:first').addClass('active');
	$('div.but a').not('.active').bind('click', function() {
		$('div.but > div').removeClass('active');
		$('div.block:visible').hide();
		$(this).parent('a').parent('div').addClass('active');
		var divId = $(this).attr('href');
		$(divId).fadeIn('fast');
		return false;
	});
	
	$(window).resize(function(){
		updateDimensions();
	});
	
	updateDimensions();
	
});