///////////////////////////////////////////////
//Title : funtions.js
//Author: Travis Holliday
//URL : www.travisholliday.com
//
// jQuery functions for Uptown Dental Designs
//////////////////////////////////////////////

$(document).ready(function(){

				$(function(){
				   var path = location.pathname.substring(1);
				   if (path)
				   $('#global_nav a[href$="' +path+ '"]').attr('class', 'active');
 				});
				
				  //slide show (office tour)
				 $('#slideshow').cycle({
					prev:   '#prev', 
					next:   '#next', 
					timeout: 3000 
				});
				  

				  
});// end document on ready
				function fadeSplash() {
					var time_out = 3000;
					setTimeout(function(){$("#wrap").fadeOut(1000)}, time_out);
					setTimeout(function(){window.location = "welcome"}, time_out+1000);
				};
				
				function welcomefadeIn() {
					$("#wrap").css({'display' : 'none'});
					setTimeout(function(){$("#wrap").fadeIn(1000)}, 500);
					
				}
				  
