$(document).ready(function(){
	
	$(".contract a").toggle(
		function() {
			$(this).parent().parent().children("hr, div, span.solid, span.dotted").hide("fast");
			$(this).css({background: "url(../assets/forums/btn_expand_contract.gif) left -13px no-repeat"});
		},
		function() {
			$(this).parent().parent().children("hr, div, span").show("fast");
			$(this).css({background: "url(../assets/forums/btn_expand_contract.gif) left top no-repeat"});
		}
	);
	
	$('#sk').change(function() {
		this.form.submit();
		
	});
	
	var setBlock = 0;
	
	/*$("#search_forums").toggle (
		function() {
			$("#forum_search_container").css({display: "block"});
		}, 
		function() {
			$("#forum_search_container").css({display: "none"});
		}
	);

	$("#search_forums_sub").toggle (
		function() {
			$("#forum_search_container_sub").css({display: "block"});
		}, 
		function() {
			$("#forum_search_container_sub").css({display: "none"});
		}
	);*/
  	
	if($.pngFix){
	  	$(document).pngFix();
	}

});