$(document).ready(function() {   
   $('.lightbox').lightBox().fadeTo(0,0.5).hover(function() {
   		$(this).fadeTo("fast",1);
   },function() {
   		$(this).fadeTo("fast",0.5);
   });

   datepicker_init();
   
   $('.moreyoutube').click(function() {
   	$('.youtubeitem').slideDown();
   	$(this).hide();
   });
});
function datepicker_init() {
   // datepickers in contact-form:
   $('input.datepicker').each(function() {
       $(this).datepicker({showButtonPanel: false, dateFormat: "yy-mm-dd"});
   });
}

function _formValidation(form) {
    var ret = false;
    $(".required",$(form)).each(function() {
        if ($(this).val()=="") {
            $(this).css("background","#eee").css("border","2px solid #f00");
           ret = true;
        }
    });
    return ret;
}

