$(document).ready(function() {	jQuery("#news_content").ticker({		cursorList:  " ",		rate: 50,		delay: 4000	}).trigger("play");			$(".slide_likebox").mouseenter(function(){			$(this).stop(false,false);			$(this).animate({'right':0},500);			$(this).css('cursor','alias');		});				$(".slide_likebox").mouseleave(function(){			$(this).stop(false,false);			$(this).animate({'right':-205});			$(this).css('cursor','pointer');					});			$("#top_menu ul li").first().css("margin-right", "5px");	$("#side_menu ul li").first().corner("top");	$("#side_menu ul li").last().corner("bottom");	$("#consulation").corner();	$("#name_source").hover(function() {		$("#name_source_hover").stop(true, true).fadeIn();	}, function() {		$("#name_source_hover").stop(true, true).fadeOut();	});	$("#consulation input").focus(function() {		if ($(this).val() == this.defaultValue)			$(this).val("");	});	$("#consulation input").focusout(function() {		if (($(this).val() == "") || ($(this).val() == " "))			$(this).val(this.defaultValue);	});});
