/**
 * @author acefx
 * @project
 * Powered : acefxlab.com  &  syntaximagination.com
 */

$(document).ready(function()
{
	//$('#sum').hide('fast');
		
	//ROTATING BANNER
	$.featureList(
				$("#tabs li a"),
				$("#output li"), {
					start_item	:	1
				});
			
	//main menu			
	$('a.nav').hover(
	function(){
		$(this).animate({paddingRight: "25px", paddingLeft: "25px"});
	},
	function(){
		$(this).animate({paddingRight: "15px", paddingLeft: "15px"});
	});
	
	//other menu
	/*$('a.act').hover(
	function(){
		$(this).animate({paddingRight: "15px"});
	},
	function(){
		$(this).animate({paddingRight: "0px"});
	});*/
	
});
