var s_height;
jQuery(document).ready(function(){
//drop-down menu
	jQuery("div.menu ul ul li:has(ul)").find("a:first").append(" &raquo;");
	jQuery(window).resize();
	//setInterval("checkheight()",2000);
	
});

jQuery(window).resize(
function(){
	/*
	sidebar min-height=319px
	window height min 580px
	*/
	//jQuery("#sidebar").html("<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>Brian say: Ignore this, will remove later:<br/> Window height: "+jQuery(window).height()+"px");
	//jQuery("#sidebar").append(jQuery(document).height());

	//if(jQuery(window).height()>580 && jQuery(window).height()<850){
	jQuery("#sidebar").height(319)
	if(jQuery(window).height()>560){
		s_height=jQuery(window).height()-560+320;
		jQuery("#sidebar").height(s_height);
	}
});

function checkheight(){
	if(container_height!=jQuery("#container").height()){
		jQuery("#container").css({"padding-bottom":"0px","margin-bottom":"0px"});
		t_height=jQuery("#container").height()-82;
		t_gap=Math.ceil(t_height/167)*167-t_height;
		
		jQuery("#container").css({"padding-bottom":t_gap+"px"});
		container_height=jQuery("#container").height();
	}
}
