$(document).ready(function(){
//====================================================================================================
$(".nav a").mouseover(function(){
	$(this).animate({left:'-=6',top:'+=6'},200,'linear');
});
$(".nav a").mouseout(function(){
	$(this).animate({left:'+=6',top:'-=6'},400,'linear');
});
//====================================================================================================

//====================================================================================================
$(".header .cycle").cycle();
//====================================================================================================
});
