function callHeight(){
	var height_avaiable = getBrowserHeight();
	var page_wrap_height = 0;
	height_avaiable = height_avaiable - (155 + 47);
	if (document.getElementById('left_content_wrap')){
		if (document.getElementById('left_content_wrap').scrollHeight > document.getElementById('main_content_wrap').scrollHeight){
			page_wrap_height = document.getElementById('left_content_wrap').scrollHeight;	
		}else{
			page_wrap_height = document.getElementById('main_content_wrap').scrollHeight;		
		}
	}else{
		page_wrap_height = document.getElementById('main_content_wrap_page').scrollHeight;
	}
	if (page_wrap_height > height_avaiable){
		document.getElementById('sidebar').style.height = (page_wrap_height + 45)+ 'px';	
	}else{
		document.getElementById('sidebar').style.height = height_avaiable + 'px';	
	}
}
function getBrowserHeight() {
  var myHeight = 0;
  if(typeof( window.innerHeight ) == 'number' ) {
    //Non-IE
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && (document.body.clientHeight ) ) {
    //IE 4 compatible
    myHeight = document.body.clientHeight;
  }
  return myHeight;
}
jQuery(document).ready(function() {
	jQuery('.selectbox').selectbox();
});
jQuery(document).ready(function() {
	jQuery('.powermail_countryselect').selectbox();
});
