function resize_div(div_height){
	$('#content').css("height",div_height-356);
}

$(document).ready(function(){
	var div_height = $(document).height();
	$(window).load(function () {
		resize_div(div_height);
	});
	$(window).resize(function () {
		resize_div(div_height);
	});
	$(window).scroll(function () {
		resize_div(div_height);
	});
	
	$(".bookmark").mouseover( function() {
		$('#wt_socialbookmarks').css("display",'inline');
	});
	$('.bookmark').mouseout(function(){
		$('#wt_socialbookmarks').css("display",'none');
	});
});

var $_GET = {};

document.location.search.replace(/\??(?:([^=]+)=([^&]*)&?)/g, function () {
    function decode(s) {
        return decodeURIComponent(s.split("+").join(" "));
    }

    $_GET[decode(arguments[1])] = decode(arguments[2]);
});

