$(function(){

    $("#header div").show();

    $("#header").cycle({
        fx: 'fade',
        pause: 1,
        speed: 2000,
        timeout: 5000,
        before: function(){
                   var portal = $(this).attr('class');
                   $("#messages").children().removeClass('active').each(function(){
                        if( $(this).hasClass(portal) ){
                            $(this).addClass('active');
                        }
                   });
               }
    });

    $(".fancy").fancybox();
	$(".fancyIframe").fancybox({
		'type' : 'iframe',
		'width': 800,
		'height': 570
	});
    $(".belTerug").fancybox({
        'type' : 'iframe',
        'height': '75%',
        'scrolling' : 'no'
    });

    Cufon.replace('ul#mainMenu li a',{hover:'true'})('h1')('h2')('#footTop a',{hover:'true'});

    var footR = $("#footContent .footRight").height();
    var footL = $("#footContent .footLeft").height();
    if( footL < footR ){ $("#footContent .footLeft").height(footR); }

    $(".vicFlip").fancybox({
        'type': 'iframe',
        'width': 890,
        'height': 620
    });
})

