$(document).ready(function() {

  $('.scrollto').hide();
  $(window).scroll(function(){
    var scrollTop = $(window).scrollTop();
    if(scrollTop > 200)
      $('.scrollto').fadeIn('slow');
    else	
      $('.scrollto').fadeOut('slow');
  });  
  $('a[href=#top]').click(function(){
    $('html, body').animate({scrollTop:0}, 'slow');
    return false;
  });
  
  $(window).scroll(function(){
    var scrollTop = $(window).scrollTop();
    if(scrollTop > 30)
      $('.logo').fadeOut('slow');
    else	
      $('.logo').fadeIn('slow');
  });   

  $(function(){ $("label.infield").inFieldLabels(); });  

  var select = $('a[href$=".bmp"],a[href$=".gif"],a[href$=".jpg"],a[href$=".jpeg"],a[href$=".png"],a[href$=".BMP"],a[href$=".GIF"],a[href$=".JPG"],a[href$=".JPEG"],a[href$=".PNG"]');
  select.attr('fancybox');
  select.fancybox();
          
$("a.videobox").fancybox({
  'autoDimensions'    : false,
		'centerOnScroll': true,  
  'scrolling'         : 'no',
  'width'             : 639,
  'height'            : 355,
  'transitionIn'      : 'elastic',
  'transitionOut'     : 'elastic',
  'padding'           : 0,
  'type'              : 'iframe'	
                    }); 

  
/* end of line */  
          
});
