/*
Bones Scripts File
Author: Eddie Machado

This file should contain any js scripts you want to add to the site.
Instead of calling it in the header or throwing it inside wp-head()
this file will be called automatically in the footer so as not to 
slow the page load.

*/

// as the page loads, cal these scripts
$(document).ready(function() {
	// add all your scripts here
	
	// Tabs: perform JavaScript after the document is scriptable.
	$(function() {
		$("ul.tabs").tabs("> .pane");
	});
	
	$(function() {
		$("#flowtabs").tabs("#flowpanes > div");
	});
	
	$(function() {
		$(".slidetabs").tabs(".images > div", {
		
			// enable "cross-fading" effect
			effect: 'fade',
			fadeOutSpeed: "slow",
			// start from the beginning after the last tab
			rotate: true
		
		}).slideshow();
	});
 
}); /* end of as page load scripts */

