// JavaScript Document
$(document).ready(function(){
	/*********BUTTONS********/
	$(".button_yellow").append('<span class="button_wrapper button_wrapper_yellow"/>');
	$(".button_blue").append('<span class="button_wrapper button_wrapper_blue"/>');
							
	$('#loopedSlider').loopedSlider();
	$('#loopedSlider2').loopedSlider();
	/*
	$.fn.loopedSlider.defaults = {
			container: ".container", //Class/id of main container. You can use "#container" for an id.
			slides: ".slides", //Class/id of slide container. You can use "#slides" for an id.
			pagination: "pagination", //Class name of parent ul for numbered links. Don't add a "." here.
			containerClick: false, //Click slider to goto next slide? true/false
			autoStart: 0, //Set to positive number for true. This number will be the time between transitions.
			restart: 0, //Set to positive number for true. Sets time until autoStart is restarted.
			slidespeed: 1000, //Speed of slide animation, 1000 = 1second.
			fadespeed: 200, //Speed of fade animation, 1000 = 1second.
			autoHeight: 0, //Set to positive number for true. This number will be the speed of the animation.
			addPagination: false //Add pagination links based on content? true/false
		};
	*/
	args = {
		autoStart: 6000 
	}
	$('#loopedSlider3').loopedSlider(args);
	//alert("ecco");
	$('#tabs-container').tabs({ fxFade: true, fxSpeed: 'fast' });
	
	//

});


