jQuery(document).ready(function(){
  jQuery("#mainnav ul:first").addClass('sf-menu');
  jQuery("#mainnav ul:first").superfish();
  jQuery("#mainnav").css('display', 'block');
  jQuery("#mainnav ul:first li:last").addClass('last-item');
  
  var incre = 0;
  jQuery(".left_sidebar .sideblock").each(function(){
    jQuery(this).addClass('sidebar-'+incre);
    incre++;
  });
  jQuery(".sidebar-0 p").each(function(){
    var thep = jQuery(this).text();
    jQuery(this).closest('blockquote').prepend(thep);
    jQuery(this).remove();
  });
  jQuery(document).pngFix();
  
  //main area columns should have equal height  
  var mah = jQuery(".mainarea").height();
  mah = mah - 104//minus footer image
	if(mah < 404) { // 404 is the height of twitter feed
		mah = mah + 404;
	}
  //mah = mah - 33//minus bottom padding
  jQuery(".left_sidebar").height(mah);
  jQuery(".right_sidebar").height(mah);
  jQuery(".main_content").height(mah);
  
	/*
	jQuery(".bbp-topic-form").prepend('<a class="newpost thickbox" href="#TB_inline?height=300&width=300&inlineId=new-post">Create new topic</a>');
	jQuery(".bbp-reply-form").prepend('<a class="newpost thickbox" href="#TB_inline?height=300&width=300&inlineId=new-post">Reply to this post</a>');
	jQuery(".bbp-topic-tag-form").prepend('<a class="newpost thickbox" href="#TB_inline?height=300&width=300&inlineId=new-post">Create topic</a>');
*/
	
	
	
  
});

