$(document).ready(function(){
	
	$(".contract a").toggle(
		function() {
			$(this).parent().parent().children("hr, div").hide("fast");
			$(this).css({background: "url(../assets/forum/btn_expand_contract.gif) left -13px no-repeat"});
		},
		function() {
			$(this).parent().parent().children("hr, div").show("fast");
			$(this).css({background: "url(../assets/forum/btn_expand_contract.gif) left top no-repeat"});
		}
	);
	
	var setBlock = 0;

	$("#search_forums a").toggle (
		function() {
			$("#forum_search_container").css({display: "block"});
		}, 
		function() {
			$("#forum_search_container").css({display: "none"});
		}
	);



/*	
	$("#forum_search_container").mouseover(function (){
	  	$(this).css({display: "block"});
  		});
  	$("#forum_search_container").mouseout(function (){
	  	$(this).css({display: "none"});
  		});
	$("#search_forums").mouseover(function (){
		$("#forum_search_container").css({display: "block"});
  		});
  	$("#search_forums").mouseout(function (){
	  	$("#forum_search_container").css({display: "none"});
  		});
  */		
  	$(document).pngFix();

});