
$(document).ready(function(){

	$('ul.nav > li, table.tariffs tr, .archive-block').hover(function(){
		$(this).addClass('hover')
	},function(){
		$(this).removeClass('hover')
	});
	
	if($.browser.msie && $.browser.version < 7) {
	
		$('#bg')
		.height($(document).height())
		
		$(window).bind('resize',function(){
			$('#bg')
			.height($(document).height())
			$('#bg i')
			.css({'top':$(document).scrollTop()})
		});
		
		$(window).bind('scroll',function(){
			$('#bg')
			.height($(document).height())
			$('#bg i')
			.css({'top':$(document).scrollTop()})
		});
	
	}

});
