$(document).ready(function() {
	var type;
	var link;
	$(".box").hover(
      function () {
        link = $(this).find("a:first").attr("href");
       	if($(this).hasClass("type0")) {
       		type = 'features';
       	} else if($(this).hasClass("type1")) {
       		type = 'news';
       	} else if($(this).hasClass("type2")) {
       		type = 'blog';
       	} else if($(this).hasClass("type3")) {
       		type = 'susology';
       	} else if($(this).hasClass("type4")) {
       		type = 'knights';
       	}
        $(this).append($('<a href="' + link + '" class="appended"><img src="/img/boxes/rollover-' + type + '.jpg" /></a>'));
      }, 
      function () {
        $(this).find("a:last").remove();
      }
    );
});
