// -------- start of jQuery document.ready() ---------- //
  
$(document).ready(function(){
	
	$("#hl_menu a").mouseover(function(){
		$(this).parent().find("span").stop().animate({left: "10px"}, 200);
		$(this).stop().animate(
		{paddingLeft: "30px"}
		, 200);
	});
	
	$("#hl_menu a").mouseout(function(){
		$(this).parent().find("span").stop().animate({left: "0px"}, 200);
		$(this).stop().animate(
		{paddingLeft: "20px"}
		, 200);
	});
	
	$(".a_top").click(function () {
		$("html").animate({scrollTop:0}, 500);
    });
	
	/* FANCYBOX */
	$(".fancybox").fancybox();
	
 });




      
     

