



$(document).ready(function(){

$("ul.nav_icons li").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
		.animate({

			top: '45%', 
			left: '30%', 
			width: '45px', 
			height: '45px',
			padding: '0px' 
		}, 300);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '40', 
			left: '35', 
			width: '40px', 
			height: '40px', 
			padding: '0px'
		}, 400);
});


 
});








$(document).ready(function(){

$("ul.right_icons li").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
		.animate({

			top: '45%', 
			left: '0', 
			width: '114px', 
			height: '65px',
			padding: '0px' 
		}, 200);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '40', 
			left: '0', 
			width: '106px', 
			height: '63px', 
			padding: '0px'
		}, 400);
});


 
});















$(document).ready(function(){	
	$(".effect").css("display", "none").fadeIn(900);
});


$(document).ready(function(){	
	$(".effect1").css("display", "none").fadeIn(1400);
});


$(document).ready(function(){	
	$(".effect2").css("display", "none").fadeIn(2000);
});







$(function(){   
  
    // basic usage   
    $('a.normalTip').aToolTip();   
 /*         
    // fixed tooltip   
    $('a.fixedTip').aToolTip({   
        fixed: true  
    });   
       
    // on click tooltip with custom content   
    $('a.clickTip').aToolTip({   
        clickIt: true,   
        tipContent: 'Hello I am aToolTip with content from param'  
    });    
       
   
    $('a').aToolTip({   
        clickIt: false,                     // set to true for click activated tooltip   
        closeTipBtn: 'aToolTipCloseBtn',    // you can set custom class name for close button on tooltip   
        fixed: false,                       // Set true to activate fixed position   
        inSpeed: 400,                       // Speed tooltip fades in   
        outSpeed: 100,                      // Speed tooltip fades out   
        tipContent: '',                     // Pass in content or it will use objects 'title' attribute   
        toolTipClass: 'aToolTip',           // Set custom class for tooltip   
        xOffset: 5,                         // x Position   
        yOffset: 5                          // y position   
    });  
	*/ 
       
}); 
