/* Document ready
--------------- */
$(document).ready(function()
{
	$("#detail_logo").css("opacity", "0.5");
	$("#detail_logo").hover(function()
	{
		$(this).stop().animate({"opacity": "1"}, "fast");
		$("#detalje").before("<p id=\"detail_logo\">Design: Detaljerytterne.dk</p>");
	},
	function()
	{
		$(this).stop().animate({"opacity": "0.5"}, "fast");
		$("#detail_logo").remove();
	});
});
