// Floating right ad - 150x600
jQuery(document).ready(function($) {
	var floatingYLock = null;
	var mainNewWidth = null;

	// Get the Y position
	floatingYLock = parseInt($('#skyjakljufur').css('top').substring(0, $('#skyjakljufur').css('top').indexOf('px')));
	if($.browser.msie && $.browser.version.substr(0,1) == '6') {
		// IE Fix
		$('#skyjakljufur').css('position', 'absolute');
		$(window).scroll(function () {
			var offset = floatingYLock + $(document).scrollTop() + "px";
			$('#skyjakljufur').animate({top:offset},{duration:0,queue:false});
		});
	}
	mainNewWidth = parseInt($('#skyjakljufur').css("width").substring(0, $('#skyjakljufur').css('width').indexOf('px'))) + 1000 + 'px';
	$('#main-container').css('width', mainNewWidth);
});