$(document).ready(function()
{
	$(".reference .over").css("display", "none");
	
	$(".reference").mouseenter(function()
	{
		$(this).children(".reference .over").fadeIn('fast');
		if ($(this).has(".ribbon"))
		{
			$(this).children(".ribbon").animate(
			{
				top: "-3px",
				left: "-3px"
			}, 100);
		}
	});
	
	
	
	$(".reference").mouseleave(function()
	{
		$(this).children(".reference .over").fadeOut('fast');
		if ($(this).has(".ribbon"))
		{
			$(this).children(".ribbon").animate(
			{
				top: "-1px",
				left: "-1px"
			}, 100);
		}
	});
	
	$(".reference").click(function()
	{
		//return false;
	});
	
	$(".reference").mousedown(function(e)
	{
		e.preventDefault();
		$(this).children(".reference a .reference-overlay-over").fadeIn(100);
	});
	
	$(".reference").mouseup(function(e)
	{
		e.preventDefault();
		$(this).children(".reference a .reference-overlay-over").fadeOut(100);
	});
	
});
