
$(document).ready(function() {
$(".image a")
.hover(
function () {
$(this).find('span').fadeIn();
},
function () {
$(this).find('span').fadeOut();
}
)
$(".class-contact .content .hide").click(function(){
if($(this).html() == 'Skjul')
{
$(".class-contact .content").animate({
height 	: '2px',
top		: '453px',
left	: '582px'
}, 500, 'swing');
$(".class-contact .content .hide").html("Vis");
}
else
{
$(".class-contact .content").animate({
height 	: '300px',
top		: '50px',
left	: '50px'
}, 500, 'swing');
$(".class-contact .content .hide").html("Skjul");
}
return false;
});
});

