$(document).ready(function() {

$('#featured_item').hover(

function() {
        $('#featured_item').stop().animate({ backgroundPosition: "(-110px -199px)"},500);
		$('#featured_item h3').delay(1000).addClass('featured_hover');
		  $('#featured_item a').stop().animate({ 'top': "100px"},300);
},
function() {
        $('#featured_item').stop().animate({ backgroundPosition: "(-1000px -199px)"},800);
		$('#featured_item h3').removeClass('featured_hover');
		 $('#featured_item a').stop().animate({ 'top': "300px"},300);
});

$('#featured_roll').hover(

function() {
        $(this).stop().animate({ backgroundPosition: "(-110px -342px)"},500);
		$('#featured_roll h3').delay(1000).addClass('featured_hover');
		 $('#featured_roll a').stop().animate({ 'top': "110px"},300);
},
function() {
        $(this).stop().animate({ backgroundPosition: "(-1000px -342px)"},800);
		$('#featured_roll h3').removeClass('featured_hover');
		 $('#featured_roll a').stop().animate({ 'top': "300px"},300);
});

$('#featured_term').hover(

function() {
        $(this).stop().animate({ backgroundPosition: "(-110px -524px)"},500);
		$('#featured_term h3').delay(1000).addClass('featured_hover');
		 $('#featured_term a').stop().animate({ 'top': "100px"},300);
},
function() {
        $(this).stop().animate({ backgroundPosition: "(-1000px -524px)"},800);
		$('#featured_term h3').removeClass('featured_hover');
		 $('#featured_term a').stop().animate({ 'top': "300px"},300);
});

});
