// JavaScript Document



// dropdown search

var hide= false;
    function show_dropdown(){
		if(!hide) document.getElementById("dd_list").style.visibility="visible";
		hide= false;
		//document.getElementById("dd_text").value=121;
	}
	function downkey(){	}
	
	function setText(val){
		hide=true;
		hide_list();
		document.getElementById("dd_text").value=val;
	}
	function hide_list(){
		document.getElementById("dd_list").style.visibility="hidden";
	}
	
	
// featured articles
$(document).ready(function(){
		$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
	});
	
	
//social top slide
$(function(){
		$("#container div a").hover(function(){
				$("img", this).stop().animate({top:"-7px"},{queue:false,duration:200});
				}, function() {
				$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
		});
});


//slide to top
jQuery('html, body').animate( { scrollTop: 0 }, 'slow' );



  

