$(document).ready( function() {

$('#s').click(function() {
	if (this.value == this.defaultValue) {
		this.value = '';
	}
});

$('#s').blur(function() {
	this.value = 'Search';
});

window.onload = function() {
	if($('.right').height() > $('.post').height()) { 
		$('.post').height($('.right').height() + 165);
	}
};

stretch_portal_content();
	$(window).resize(stretch_portal_content);
});

function stretch_portal_content() {
		if ($(window).height() > $('html').innerHeight())   {
			$('#sidebar').height($(window).height()- 490);
		} else { 
			 $('#sidebar').height($('html').height() - 490);
		}
}




