// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(function(){
	$.blue.slideshow("#home .slideshow", {
			duration:[3000,800],
			transition_duration:0,
			loop:false,
			slide_selector: ".frames img",
			oncomplete:function() {
				this.current_slide.fadeOut(2000);
			},
			transition: function() {
				if (this.current_slide) {
					this.current_slide.hide();
				}

				this.next_slide.show();
			}
		});
});


