$(document).ready(function() {
    var tabCont = $('div.information');
    tabCont.hide().filter(":first").show();
    $('ul li a[class!="getLink"], .info-label a').live('click',function() {
        var section = $(this).attr('title');
        $('div.information, div.imagegallery').hide();
        if ($("div#contents").attr('class') !== section) {$("div#contents").removeAttr('class').addClass(section);}
        $('div.information.' + $(this).attr('title')).fadeIn(500);
        document.title = 'ecru : modern stationer - ' + section;
        if (section == 'wedding' || section == 'instore' || section == 'announce' || section == 'holiday') {
            var galPage = section + '.html';
            $(".gallery").load(galPage);
        };
        return false;
    });
    $('.copy.custom a').live('click', function() {
            var section = $(this).attr('title');
        $('div.gallery .imagegallery').hide();
            var galPage = section + '.html';
            $(".gallery").load(galPage);
            return false;
    });
    $("#nav li a").mouseover(function(){
        $(this).css({"color": "#ddd"}).animate({"color": "#7f9a9a"}, "normal", "linear", $(this).stop());
    });
    $("#nav li a").mouseout(function(){
         $(this).animate({"color": "#342601"});
});
});