function iefix() {
	if ($('#container').width() < 1101 ) {
		$('#container').width('1100');
	} else {
		$('#container').width('100%');
	}
	if ($('#rightPanel').width() < 180) {
		$('#rightPanel').width('179');
	} else {
		$('#rightPanel').width('20%');
	}
} 
$(document).ready(function(){
	function activate_current() {
		$('#hd_change span').click(function(){
			if ($(this).hasClass('current'))
				return false;
			$('#hd_change span.current').removeClass('current');
			activate_current();
			$(this).addClass('current');
			$('#hd_bg2').attr('class', null);
			$('#hd_bg2').html('<img src="' + $(this).attr('set') + '" />');
			if (jQuery.browser.msie)
				jQuery('#hd_bg2 img').ifixpng();

		});
	}
	activate_current();
	iefix();
	$('.model .img a').lightbox();
});

$(window).resize(function(){
	iefix();
});

