/** ********************************************
 *	Effects starter by Hradecon
 *	(C) copyright Vaclav Hradec 2003-2010
 *	file: 	layout.js 
 *	email: 	vh@hradecon.com
 * 	web:	http://Hradecon.com
 * *********************************************/

$(function(){ 
	$('#main-menu .lavaLamp').lavaLamp({ fx: 'easeOutBack', speed: 700 });
});

$(document).ready(function() {
    // CAROUSELS
	$('#quickport').jcarousel({
        scroll: 1
    });
   
    
    // CUFON - font replacements
    Cufon.replace('#content_out > h2');
    Cufon.replace('#content > h2');
    Cufon.replace('#doc-wrap h3', {
		textShadow: '0px 1px rgba(50, 50, 50, 0.7)'
	});
    
    // FADER
    $('#top-panel .rocket').append('<span class="hover" />').each(function () {
        var $span = $('> span.hover', this).css('opacity', 0);
        $(this).hover(function () {
            $span.stop().fadeTo(250, 1);
        }, function () {
            $span.stop().fadeTo(500, 0);
        });
    });
    
    $('#doc .support img').hover(function() {
		$(this).stop().animate({ opacity: 0.7 }, 700);
	}, function() {
		$(this).stop().animate({ opacity: 1.0 }, 250);
	});
});

/* ***************************** FUNC *********************************** */

