$(document).ready(function() {
    $("#right a.box").fancybox({
	    'transitionIn': 'elastic',
        'transitionOut': 'elastic',
        'titlePosition': 'over',
        'showCloseButton': false,
        'padding': 0,
        'scrolling': 'no'
    });
    
    $("#left a").hover(
        function() {
            var colors = ['#8A0', '#216778', '#5B4975', '#874A22', '#B7B711'];
            var rand = Math.floor( Math.random() * colors.length + colors.length );
            var color = colors[ rand - colors.length ];
            $(this).css("background-color", color)
        },
        function() {
            $(this).css("background-color", '')
        }     
    );
});

