jQuery.noConflict();
jQuery(document).ready(function() {
  // Login / Suche
  jQuery('#nav10').click(function(){
    jQuery('#suche').hide();
    jQuery('#login').toggle('slow');
    return false;
  }),
  jQuery('#nav48').click(function(){
    jQuery('#login').hide();
    jQuery('#suche').toggle('slow');
    return false;
  }),
  
  // Kommentare
  jQuery('#comment').focus(function(){
    if(jQuery(this).val()=='Kommentar'){
      jQuery(this).val('');
    }
  }),
  
  // Videoupload
  jQuery('#videoupload').click(function(){
    //ytVideoApp.prepareUploadForm();
    //return false;
  })            
});
