
$(document).ready(function() {


   $('#advert').cycle({ 
       fx:      'fade', 
       speed:    1000, 
       timeout:  5000 
   });


    $('.photo-gallery').each(function()
    {
       $('.photo-gallery a.thumb').lightBox({
            fixedNavigation:true,
            txtImage: $(this).attr('title')
        });
        
    });
    
    $('.article').each(function()
    {
       $('.gallery-photo a').lightBox({
            fixedNavigation:true,
            txtImage: $(this).attr('title')
        });
        
    });

    
    
});

/* newsletter signup */
$(document).ready(function() {

  $("#signupform input[@type='text']").focus(function(event){
    $(this).val('')
  });
  
 });
