

$(document).ready(function(){


jQuery('#mycarousel').jcarousel();
//$('#gallery a').lightBox(); 

$('.text').each(function() { var default_value = this.value; $(this).focus(function() {if(this.value == default_value) { this.value = ''; }}); });

    $(".flink").click(function() {
        var h_el = 4;
        for(i = 1; i <= h_el; i++) {
            $('#fc'+i).css('display', 'none');
        }
        
        var o = $(this).attr('id');
        p = eval(o.substring(1,2));
        $('#fc'+p).fadeIn('slow');
        g = p;
    });
    
    setInterval(function() {

        var h_el = 4;
        for(i = 1; i <= h_el; i++) {
            $('#fc'+i).css('display', 'none');
        }
        g += 1;
        if(!($('#fc'+g).length))
            g = 1;
        $('#fc'+g).fadeIn('slow');
       
   }, 19000);
 
});
