﻿$(document).ready(function() {

if ($('.smartListGridThumbs').length) {
    $('.smartListGridThumbs .SmartListDescription').wrapInner('<p><a></a></p>');
    }

    $('.smartListGridThumbs li').hover(
	    function() {
	        var link = $(this).children('.SmartListPageLink').attr('href');
	        $('.smartListGridThumbs .SmartListDescription p a').attr('href', link);
	        $(this).animate({ backgroundColor: "#D9D9D8" }, 200);
	        $(this).children('.SmartListDescription').stop().animate({ "opacity": "0.80" }, 200);
	    },
	    function() {
	        $(this).children('.SmartListDescription').stop().animate({ "opacity": "0.0" }, 200);
	        $(this).animate({ backgroundColor: "#EBEBEA" }, 200);
	    }
	);
});
