﻿var $j3 = jQuery.noConflict();
$j3(document).ready(function() {
    //To switch directions up/down and left/right just place a "-" in front of the top/left attribute

    //Full Caption Sliding (Hidden to Visible)
    $j3('.boxgrid.captionfull').hover(function() {
        $j3(".cover", this).stop().animate({ top: '110px' }, { queue: false, duration: 160 });
    }, function() {
        $j3(".cover", this).stop().animate({ top: '140px' }, { queue: false, duration: 160 });
    });
    //Caption Sliding (Partially Hidden to Visible)
    $j3('.boxgrid.caption').hover(function() {
        $j3(".cover", this).stop().animate({ top: '140px' }, { queue: false, duration: 160 });
    }, function() {
        $j3(".cover", this).stop().animate({ top: '200px' }, { queue: false, duration: 160 });
    });
});
