﻿// SpinSix
// S6_Framework splash_bbb.js
// @author	Brandon Kidd
// @copy	Spinsix 2011

var SplashBBB = {
	init: function ()
	{
	    SplashBBB.bind();
	},
	
	// All event bindings should go here
	bind: function ()
	{

		// Splash BBB rotating marquee
		if ($('#splash-bbb .slide').length > 1) {
		    $('#splash-bbb .slides').before('<div class="slide-nav" />');
		    $('#splash-bbb .slides').cycle({ fx: 'fade', speed: '300', timeout: '5000', pager: '#splash-bbb .slide-nav', pause: true });
		}
	}
};

// initialize on DOM ready
$(function(){
    SplashBBB.init();
});
