jQuery(document).ready(function(){
	//hide the view projects link we replace with Flash
	jQuery('#article div#big-note a').hide();
	
	//set up the home page movie
	jQuery('body#start #article div#big-note').flash({
		src: '/swf/slideshow.swf',
		width: 432,
		height: 324,
		wmode:'transparent', 
		base:'.', 
    majorversion:'6', 
    build:'0',
		menu:'false',
		base:'.'
	});
	
  //replace the email text w/ a working email link
  var real_email = 'billee@obxdesignworks.com';//actual email address
  //replace it
  jQuery('body#how #contact-email').replaceWith('<a class="email" id="contact-email" href="mailto:'+real_email+'" title="Email Outer Banks Design Works">'+real_email+'</a>');
	
});