jQuery(document).ready(function(){
	var videos = new Array('wellness-consultant','personal-trainer','yoga-instructor','massage','auto-detailing','housekeeping');
	jQuery('#video-wellness-consultant').click(function(){
		jQuery('#stage').html('<object width="525" height="325"><param name="movie" value="http://www.youtube.com/v/76FLXuCo23E&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/76FLXuCo23E&amp;hl=en_US&amp;fs=1&amp;autoplay=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="525" height="325"></embed></object>');
		jQuery('.video-link').each(function(){
			jQuery(this).removeClass('watching');
			jQuery(this).parent().removeClass('watching');
		});
		jQuery(this).addClass('watching');
		jQuery(this).parent().addClass('watching');
		return false; // prevents link from firing
	});
	jQuery('#video-personal-trainer').click(function(){
		jQuery('#stage').html('<object width="525" height="325"><param name="movie" value="http://www.youtube.com/v/feHF0aAjsQg&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/feHF0aAjsQg&amp;hl=en_US&amp;fs=1&amp;autoplay=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="525" height="325"></embed></object>');
		jQuery('.video-link').each(function(){
			jQuery(this).removeClass('watching');
			jQuery(this).parent().removeClass('watching');
		});
		jQuery(this).addClass('watching');
		jQuery(this).parent().addClass('watching');
		return false; // prevents link from firing
	});
	jQuery('#video-yoga-instructor').click(function(){
		jQuery('#stage').html('<object width="525" height="325"><param name="movie" value="http://www.youtube.com/v/bM8c5NMMfUU&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/bM8c5NMMfUU&amp;hl=en_US&amp;fs=1&amp;autoplay=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="525" height="325"></embed></object>');
		jQuery('.video-link').each(function(){
			jQuery(this).removeClass('watching');
			jQuery(this).parent().removeClass('watching');
		});
		jQuery(this).addClass('watching');
		jQuery(this).parent().addClass('watching');
		return false; // prevents link from firing
	});
	jQuery('#video-massage').click(function(){
		jQuery('#stage').html('<object width="525" height="325"><param name="movie" value="http://www.youtube.com/v/LGOC7K1Bvxs&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/LGOC7K1Bvxs&amp;hl=en_US&amp;fs=1&amp;autoplay=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="525" height="325"></embed></object>');
		jQuery('.video-link').each(function(){
			jQuery(this).removeClass('watching');
			jQuery(this).parent().removeClass('watching');
		});
		jQuery(this).addClass('watching');
		jQuery(this).parent().addClass('watching');
		return false; // prevents link from firing
	});
	jQuery('#video-auto-detailing').click(function(){
		jQuery('#stage').html('<object width="525" height="325"><param name="movie" value="http://www.youtube.com/v/ivrafhMPZow&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ivrafhMPZow&amp;hl=en_US&amp;fs=1&amp;autoplay=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="525" height="325"></embed></object>');
		jQuery('.video-link').each(function(){
			jQuery(this).removeClass('watching');
			jQuery(this).parent().removeClass('watching');
		});
		jQuery(this).addClass('watching');
		jQuery(this).parent().addClass('watching');
		return false; // prevents link from firing
	});
	jQuery('#video-housekeeping').click(function(){
		jQuery('#stage').html('<object width="525" height="325"><param name="movie" value="http://www.youtube.com/v/qrIljOs65Mk&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/qrIljOs65Mk&amp;hl=en_US&amp;fs=1&amp;autoplay=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="525" height="325"></embed></object>');
		jQuery('.video-link').each(function(){
			jQuery(this).removeClass('watching');
			jQuery(this).parent().removeClass('watching');
		});
		jQuery(this).addClass('watching');
		jQuery(this).parent().addClass('watching');
		return false; // prevents link from firing
	});
	if ( location.hash == '#wellness-consultant' ) {
		jQuery('#video-wellness-consultant').click();
	} else if ( location.hash == '#personal-trainer' ) {
		jQuery('#video-personal-trainer').click();
	} else if ( location.hash == '#yoga-instructor' ) {
		jQuery('#video-yoga-instructor').click();
	} else if ( location.hash == '#massage' ) {
		jQuery('#video-massage').click();
	} else if ( location.hash == '#auto-detailing' ) {
		jQuery('#video-auto-detailing').click();
	} else if ( location.hash == '#housekeeping' ) {
		jQuery('#video-housekeeping').click();
	} else {
		jQuery('#video-'+videos[Math.floor(Math.random()*6)]).click();
	}
});
