// JavaScript Document

$(document).ready(function() {
	$(".fav a").click(function() {
	//alert("Test");
    $(".fav").fadeOut("slow").load(location.href + "?changefavorite",{direct: "no"}, function() {
      $(".fav").addClass("obox");
      $(this).fadeIn("fast");
    });
	return false;
	});
});