// Functions
jQuery(function($) {

	// fading postbit, pagination and sumbmit buttons
	$('img[src*=themes/BF3_Xtreme/forums/images/lang_english/], img[src*=themes/BF3_Xtreme/images/menu/], .button, .mainoption, .liteoption, .btn-4, .submit, .catbutton, .avatar, #spotlight')
	.hover(function() {
		$(this).animate({
			opacity: .7
		});
	}, function() {
		$(this).animate({
			opacity: 1
		});
	});
	
	// forums drop down
	var opened = false;
	$("#forums_tab").click(function(){
		if(opened){
			$("#forums_me").animate({"top": "+=171px"}, "slow");
		}else{
			$("#forums_me").animate({"top": "-=171px"}, "slow");
		}
		$("#forums_content").slideToggle("slow");
		$("#forums_tab .close").toggle();
		opened = opened ? false : true;
	});
});

