var	js = {
	sections_height : function(){
		content_el = jQuery('#content');
		content_height = content_el.outerHeight();
		sidebar_height = jQuery('#sidebar').outerHeight();
		if ( content_height < sidebar_height ) content_el.height(sidebar_height);
	}
}
jQuery(document).ready(function($){
	js.sections_height();
	$('.expand').hide();
	$('.toggle a').click(function(){
		target = $(this).attr('href');
		$(target).slideToggle('normal');
		return false;
	});
	if ( $.browser.msie ){
		$('#send-button').attr('value', '');
	}
});
jQuery.extend({
	id : function(id) {
		var id = id.split("#");
		return document.getElementById(id[1])?true:false;
	}
});