// JavaScript Document

// Function to create opacity fade on menu .. can apply to any image with class 'fade-img'

$(document).ready(function(){
						   $(".fade-img").fadeTo(200, 0.65); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".fade-img").hover(function(){
						   $(this).fadeTo(200, 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo(200, 0.65); // This should set the opacity back to 30% on mouseout
						   });
						   });
