$(document).ready(function() {
    $('div.row-wrapper').hover(
    function(){
        $('div.colour').stop(true, true);
        $('div.caption').stop(true, true);
        $(this).find('div.colour').fadeIn();
        caption = $(this).find('div.caption');
        posy = $(this).height() - caption.height();
        if ( posy < 0 ) posy = 0;
        caption.animate({'top': posy}, 750);
    },
    function(){
        $('div.colour').stop(true, true);
        $('div.caption').stop(true, true);
        $(this).find('div.colour').fadeOut();
        caption = $(this).find('div.caption');
        posy = $(this).height();
        caption.animate({'top': posy});
    });
    $('div.row-wrapper div.announces a').hover(
    function(){
        $('div.row-wrapper div.announces a img').stop(true, true);
        $(this).find('img').fadeOut();
    },
    function(){
        $('div.row-wrapper div.announces a img').stop(true, true);
        $(this).find('img').fadeIn();
    });
    $('div.inner-right a.side-image').hover(
    function(){
        $('div.inner-right a.side-image img').stop(true, true);
        $(this).find('img').fadeOut();
    },
    function(){
        $('div.inner-right a.side-image img').stop(true, true);
        $(this).find('img').fadeIn();
    }    
    );
    $("a.side-image").fancybox({
		'overlayShow'     :   true,
		'showCloseButton' :   false,
		'showCaption'     :   false		
    });
    $('div.main-index a.tag-image').hover(
    function(){
        $('div.main-index a.tag-image img').stop(true, true);
        $(this).find('img').fadeOut();
    },
    function(){
        $('div.main-index a.tag-image img').stop(true, true);
        $(this).find('img').fadeIn();
    }    
    );
});