$(document).ready(function(){
$('ul#animate').innerfade({
speed: 2000,
timeout: 6000,
type: 'sequence',
containerheight: '262px'
})
})

/*  ================LIST NAVIGATION  ================*/
$(function(){
		$('#nav-list a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({ marginLeft : 10 }, 250);
			$(this).css( {backgroundColor:""}, 100 )
			$(this).css({ color: "#f6993e" }, 10);
		})
		.mouseout(function(){
			$(this).stop().animate({ marginLeft : 0 }, 250);
			$(this).css( {backgroundColor:""}, 100 )
			$(this).css({ color: "#fcff82" }, 10);
		})
		
});

/* ================ TAB NAVIGATION ================ */    

$(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 800 })});

/* ================ BACK TO TOP ================ */
$(document).ready(function() {
   
    $('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });

});

$(document).ready(function(){
						   
	$(".onewaylink").click(function(){
    	window.location=$(this).find("a").attr("href");return false;

	});
	

});

/* =========== marquee ============= */
$(document).ready(function(){

  // Add Scroller Object
  $jScroller.add("#scroller_container","#scroller","up",3,true);
 
 // Start Autoscroller
  $jScroller.start();
 });
