$(document).ready(function() {

// JFlow
$("#myController").jFlow( {
slides: "#slides",  // Sliding content container
controller: ".jFlowControl", // Must be class
slideWrapper: "#jFlowSlide", // Must be id
selectedWrapper: "jFlowSelected",  // Text only
width: "850px",  // Width of content slider
height: "240px",  //  Height of content slider
duration: 600,  // Transition (milliseconds)
prev: ".jFlowPrev", // Must be class
next: ".jFlowNext" // Must be class
});

// Thumbnails
$(".thumbnail").fadeTo("fast", 0.5); // Set initial opacity of thumbnails
$(".thumbnail").hover(function() {
$(this).fadeTo("fast", 1.0); // Set opacity to 100% on hover
},function() {
$(this).fadeTo("fast", 0.5); // Set opacity on mouse out
});

});


// Current year
thedate = new Date();
theyear = thedate.getFullYear();


// Today's date
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var monthNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var today = new Date();


// Contact
function escramble() {
 var a,b,c,d,e,f,g,h,i,j
 a='<a href=\"mai'
 b='inquiry'
 c='\">'
 a+='lto:'
 b+='@'
 e='</a>'
 f='CONTACT'
 b+='richardthompson.com'
 g='<img src=\"'
 h=''
 i='\" alt="Contact" border="0">'
 j='?subject=Website%20Inquiry'

 if (f) d=f
 else if (h) d=g+h+i
 else d=b

 document.write(a+b+j+c+d+e)
}