/**************************************************************/
//@Author: Kim Løwert
//@website: www.appstract.dk
//@email: kim@appstract.dk
//@license: Feel free to use it, but keep this credits please!
/**************************************************************/
jQuery.noConflict();

jQuery(document).ready(function(){
	initIntroText();
});

function initIntroText(){
    var fadeTime = 150;
    
    jQuery("#header #intro").hover(function(){
        var introText = jQuery("#header #intro-text").clone();
        jQuery("#frontpage, #content").prepend(introText.html());
        
        jQuery("#frontpage .hover-text .background, #content .hover-text .background").css({
		"opacity": "0.01",
            	"width": jQuery("#frontpage .hover-text .content, #content .hover-text .content").width() + 40,
            	"height": jQuery("#frontpage .hover-text .content, #content .hover-text .content").height() + 40
	});
        jQuery("#frontpage .hover-text .background, #content .hover-text .background").fadeTo(fadeTime, 0.75, function(){
            jQuery(this).parent().find(".content").fadeIn(fadeTime);
	    
        });
    },
    function(){
        jQuery("#frontpage .hover-text .content, #content .hover-text .content").fadeOut(fadeTime, function(){
            jQuery(this).parent().find(".background").fadeOut(fadeTime, function(){
                jQuery(this).parent().remove();
            });
        });
    });
}
