(function($) {
	$(document).ready(function(){
	
		//Animation Special Button		
		$(".dnavi_item_level0 a").mouseenter(function() {
			$(this).animate({"margin-top": "0px"},"fast");
		});
		

		$(".dnavi_item_level0:not(.dnavi_thread_active) a").mouseleave(function() {
			$(this).animate({"margin-top": "-15px"},"fast");
		}); 
		
		//Animation Special Button
		$(".mwAniButton").mouseenter(function() {
			$(this).animate({"margin-top": "0px"},"fast");
		});
		
		$(".mwAniButton").mouseleave(function() {
			$(this).animate({"margin-top": "-15px"},"fast");
		});
		
		//History Back
		$(".mwBackButton").click(function() {
			window.history.back()
		});
		
		// Search Button
		
		$(".mwSearchButton").click(function() {
			$(".seachBox").css("display","block");
		});
	
	});

})(jQuery);
