// JavaScript Document
 $(document).ready(function() {


$("#gallery-thumb a").hover(
														function(){
														$(this).animate({ backgroundColor: "#CCCCCC" }, 300);}, 
function() {
    $(this).animate({ backgroundColor: "#404040" }, 500);});

$("#navigation li").hover(
														function(){
														$(this).animate({ backgroundColor: "#CCCCCC" }, 300).children("a").animate({color:'#101010'},300);}, 
function() {
    $(this).animate({ backgroundColor: "#404040" , color: "#CCCCCC" }, 300).children("a").animate({color:'#CCCCCC'},300);});

							$("#gallery-thumb a").overlay({target: '#gallery', expose: '#111111'}).gallery({ speed: 300});

					
							
							});
