$(function(){

	var siteHeight = $(window).height();
	var siteWidth = $(window).width();

	if ($.browser.msie && $.browser.version.substr(0, 1) < 7) {
		$('div#container-foot').css({'position': 'absolute'});
		$('div#container-foot').css({'top' : siteHeight-70+'px'});
		$('div#container-foot').css({'left' : siteWidth-136+'px'});
		$(window).scroll(function(){
			var newTop = $(this).scrollTop() + siteHeight  - 70;
			$('div#container-foot').css('top', newTop + "px");
		});
	} else {
		$('div#footer').css({'top' : siteHeight-70+'px'});
		$('div#footer').css({'left' : siteWidth-136+'px'});

		$(window).resize(function(){
			var siteHeight = $(window).height();
			var siteWidth = $(window).width();
			$('div#footer').css({'top' : siteHeight-70+'px'});
			$('div#footer').css({'left' : siteWidth-136+'px'});
		});
	}
	
});
