jQuery(function(){
  jQuery("a").bind("focus",function(){if(this.blur)this.blur();});
  jQuery('#global_menu img, #index_media .menu img, #header_menu img, .rollover').rollover();
  jQuery("#global_menu li").hover(function() {
	jQuery(this).children('ul:not(:animated)').animate({height: "show"}, 500, "quart", function(){});
   }, function() {
	jQuery(this).children('ul').animate({height: "hide"}, 300, "quart", function(){});
  });

});

jQuery(document).ready(function($){
 $("#global_menu ul li a").hover(function() {
  $(this).stop().animate({ backgroundColor: "#ddd" }, 100);
  },function() {
  $(this).stop().animate({ backgroundColor: "#fff" }, 300);
 });
}); 


function changefc(color){
  document.getElementById("search_input_content").style.color=color;
}
