$(document).ready(function()
        {   $("img.logo").hide();
        
            $(".container a").hide();
            
            $("div.dedevelopment, div.design").mouseover(function (){
                $(this).addClass("comingsoon"); 
            });
            
            $("div.dedevelopment, div.design").mouseout(function (){
                $(this).removeClass("comingsoon");
            });
            
            $("div.photography").mouseover(function (){
                $(this).addClass("enter"); 
            });
                       
            $("div.photography").mouseout(function (){
                $(this).removeClass("enter");
            });
            
            $("div.photography").click(function() {
                window.location = $(this).find("a").attr("href");
	    });
            
            $("div.copyright p").mouseover(function() {
                $("img.logo").fadeIn();
                $(this).addClass("copyright-highlight");
                $(this).html("Slick Intermedia is a full-service photography and <br />web media agency located in Central Florida.");
	    });
            $("div.copyright p").mouseout(function() {
                $("img.logo").fadeOut();
                $(this).removeClass("copyright-highlight");
                $(this).html('&copy; 2009 - Slick Intermedia');
	    });
});