$(document).ready(function(){

	update_height($(window).height());
	/*$(window).resize(function() {
		update_height($(window).height());
	});*/

});

function update_height(w_ht){

	var b_ht = $('body').height();
	if(w_ht > b_ht){
		var ht = w_ht - 233 -162;
		$('#body').height(ht);
	}
}




function myBookmark(a) 
{  
	var ua = navigator.userAgent.toLowerCase();
	var isIE = (ua.indexOf("msie") != -1 && ua.indexOf("opera") == -1 && ua.indexOf("webtv") == -1);
	var isOpera = (ua.indexOf("opera") != -1);

	if (isOpera && window.print)
	{  
		var mbm = a;  
		mbm.setAttribute("rel", "sidebar");  
		mbm.setAttribute("title", document.title);  
		mbm.setAttribute("href", window.location.href);  
		mbm.click();  
	}  
	else if (window.sidebar) 
	{  
		window.sidebar.addPanel(document.title, window.location.href, "");  
	}  
	else if(isIE) 
	{ 
		window.external.AddFavorite(window.location.href, document.title);  
	}  
	else  
	{ 
		alert('You need to press Ctrl + D to bookmark our site.'); 
	}
	return false;
}
