/* 
	All Source Code Copyright 2010, Vrasa
	http://vrasa.com/
	
	If you like what you see, and want to use
	some of this code please email us here: 
	hello [at] vrasa.com and we can discuss 
	pricing and availability.

	Date: Wed July 14 10:20:19 2010 -0600
*/

$(document).ready(function() {
																					//delay
	$.fn.delay = function(time, callback){
    	jQuery.fx.step.delay = function(){};
    	return this.animate({delay:1}, time, callback);
	}
	
	
																					//slider
	$('#coda-slider-1').codaSlider({
		autoSlide: false,
		autoSlideInterval: 10000,
		slideEaseDuration: 700,
		firstPanelToLoad: 1,
        slideEaseFunction: "easeInQuart",
        slideDirection: "vertical"
	});
	
	
																					//hide
	$('#master').hide();
	
	$('#master').delay(500).fadeIn(2000);
			
});
