﻿
///<reference path="jquery-1.2.6-vsdoc.js" />

$(document).ready(function() {
    $("a[target='_lightbox']").each(function() {
        if ($(this).attr("href").indexOf("?") > -1) {
            $(this).attr({
                href: $(this).attr("href") + "&layout=small",
                title: jQuery.trim($(this).text()),
                target: ""
            }).addClass("thickbox");
        }
        else {
            $(this).attr({
                href: $(this).attr("href") + "?layout=small",
                title: jQuery.trim($(this).text()),
                target: ""
            }).addClass("thickbox");
        }
        $(this).fancybox({
            'titleShow': false,
            'width': '600',
            'height': '400',
            'autoScale': false,
            'transitionIn': 'none',
            'transitionOut': 'none',
            'autoDimensions': false
        });
    });


    $(".innerColumnDoubleLeft  .linkList li:even").addClass("even");



});

