// JavaScript Document
// execute your scripts when DOM is ready. this is a good habit
$(function() {
	$("div.billboard_tabs").tabs(".billboard_images > a.billboard_slide", {
		effect: 'fade',
		fadeOutSpeed: "slow",
		rotate: true 
	}).slideshow({
		autoplay: true,
		interval: 6000
	});
	
	$("div#featured_aircraft_window").scrollable({
		size:2,
		vertical:false,
		nextPage: "#featured_next_button",
		prevPage: "#featured_previous_button"
	});//.circular().navigator()
});
