$(function() {

    $( "#change-behavior-slider" ).scrollable({ circular: true }).navigator().autoscroll({
        interval: 4000
    });
    
    //resets animated gifs
    var api = $( "#change-behavior-slider" ).data( "scrollable" );
    api.onSeek(function() {
        var index = this.getIndex();
		src = this.getItems().eq(index).find( "img" ).attr( "src" );
		if(this.getItems().eq(index).hasClass( "animated" )) {
			this.getItems().eq(index).find( "img" ).attr( "src", src );
		}
	});
	
	$( "ul.landing-page-tabs" ).tabs( "div.landing-tab-page-container > div.landing-tab-page", { effect: 'fade' });
	
	//coming in from another location....
	$( "#marketing-for-change-tabs" ).ready( function() {
		if( window.location.hash == '#creative' ) {
			$( "#marketing-for-change-tabs" ).click();
		}
		
	});	
});

