var img = new Image();
img.src = "/content/images/offers/acdseepro3/rectangle.gif";

try {
	document.execCommand('BackgroundImageCache', false, true);
} catch(e) {
}

$().ready(function() {
	$('#nav a').click(function(e) {
		e.preventDefault();
		e.stopPropagation();

		var selected = $(this.hash);
		var current = $('#page .page:visible');

		if(selected.attr('id') != current.attr('id')) {
			$('#nav a').removeClass('active');
			$(this).addClass('active');

			var height = current.height();

			$('#pages').animate({ height: selected.height() + 30 });

			current.fadeOut(function() {
				selected.fadeIn();
			});
		}
	}).hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
});
