$(document).ready(function() {
  // automatic mouseover
  $(".mouseover").imghover({ fade: 'true', fadeSpeed: 350 });
  $(".gallery").fancybox({ 
		'overlayColor'	:	'#000',
		'overlayOpacity':	0.8,
		'cyclic'			:	'true'
	});

  $(".player").fancybox({
    'overlayColor'	:	'#000',
	'overlayOpacity':	0.8,
	'width': 1100,
	'height': 650,
    'autoScale'     	: false,
    'transitionIn'		: 'none',
	'transitionOut'		: 'none',
	'type': 'iframe'
  });

  // partner logos
  $('#partner_logos img').css("opacity",0.6);
  
  $('#partner_logos img').each(function() {
    $(this).hover(function() {
      $(this).stop().animate({
	    opacity: 1.0 }, 100);
	  },
      function() {
          $(this).stop().animate({
	  	    opacity: 0.6
	      }, 300);
    });
  });

  // check form
  $('#contactform').submit(function() {
  	if($('#name').val() == '' || $('#mail').val() == '' || $('#message').val() == '') {
	  $('#form_error').slideDown('slow');
	  return false;
	}
  });
});
