  
$(document).ready(function() {
     $('.tfe').hover(function(){
        $(this).stop().animate({marginLeft: "-60px"}, 200);
     }, function() {
     $(this).stop().animate({marginLeft: "0px"}, 200);
     });
     
     $('#menu ul li').hover(function(){
        $(this).stop().animate({paddingTop: "20px"}, 100);
     }, function() {
     $(this).stop().animate({paddingTop: "12px"}, 100);
     });
          
     $('#top a').click(function(){
		$.scrollTo( '0px', 600);
	});
     

    
    $('.scrollMeRight, .scrollMeLeft').animate({opacity: .5}, 0);
    $('.scrollMeLeft').hover(function(){
          $(this).animate({left: "-70px", opacity: 1}, 100);
    }, function(){
          $(this).animate({left: "-55px", opacity: 0.5}, 100);
     });
    
    $('.scrollMeRight').hover(function(){
          $(this).animate({right: "100px", opacity: 1}, 100);
    }, function(){
          $(this).animate({right: "115px", opacity: 0.5}, 100);
     });
   
   
   
   $('#pageReload').fadeOut(3500, function() {
      $(this).remove();
   });
   
     
     
      $('.pageimage').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

    
});










$(document).ready(function() {
var arc_params = {
    center: [750,40],  
        radius: 10,    
        start: 0,
        end: 5,
        dir: -1
  }
  $( "#arc") .everyTime ( 10, function (){
$("#arc").animate({path : new $.path.arc(arc_params)}, 6000)
});
  
var arc2_params = {
    center: [940,200],  
        radius: 3,    
        start: 0,
        end: 5,
        dir: -1
  }
  $( "#arc2") .everyTime ( 10, function (){
$("#arc2").animate({path : new $.path.arc(arc2_params)}, 4000)
});
  
var arc3_params = {
    center: [890,20],  
        radius: 8,    
        start: 0,
        end: 5,
        dir: -1
  }
  $( "#arc3") .everyTime ( 10, function (){
$("#arc3").animate({path : new $.path.arc(arc3_params)}, 9000)
});
  
  var arc4_params = {
    center: [-18,390],  
        radius: 8,    
        start: 0,
        end: 5,
        dir: -1
  }
  $( "#arc4") .everyTime ( 10, function (){
$("#arc4").animate({path : new $.path.arc(arc4_params)}, 7000)
});

    $( "") .everyTime ( 10, function (){
     $("") .animate ({top:"60px", left: "650px" }, 3000 ).animate ({left: "630px" }, 3000 ).animate ({top: "75px", left: "640px" }, 3000 );
 });

});



