jQuery.noConflict();
var $j = jQuery;

//$j('html').addClass('js'); // fixes the flash of unstyled content in header

$j(document).ready(function(){

	//replace submit buttons with images
	$j(".Actions").append('<input name="submit-button" type="image" value="GO" src="resources/img/button-search.gif" alt="GO" class="button" />');
	$j(".action").remove();
	
	$j(".blog-wrapper").hide();
	
	$j("li.blog-tab a").click(function(){
		$j(".blog-wrapper").show();
		$j(".news-wrapper").hide();
		$j(this).addClass("current");
		$j("li.news-tab a").removeClass("current");
		
	});	
	
	$j("li.news-tab a").click(function(){
		$j(".news-wrapper").show();
		$j(".blog-wrapper").hide();
		$j(this).addClass("current");
		$j("li.blog-tab a").removeClass("current");
	
	});	



  	$j("#search-results .search-block h2:even").addClass("highlight");
	$j("#search-results .search-block p:even").addClass("highlight");
	
	$j("#subnav-col ul li ul li").parent().parent().addClass("parent");
	
	$j("#feature-col h3:first").addClass("first");
	
	//$j("#accent img.static-img").hide();
	
	$j("#content-col .T3 p img").parent().addClass("special");


	$j("#BBTagsHolder").hide();
	
	$j("#BBCodeHint").click(function(){
		$j("#BBTagsHolder").slideToggle("slow");
		
		
	});	



	
});
	
	
