jQuery(function() {
   jQuery('a[rel*=lightbox]').lightBox();
});

jQuery(document).ready(function() {
 jQuery('#Quicksubmit').hover(
   function () {
  jQuery(this).attr('src', 'images/bg-senden-hover.jpg');
   }, 
   function () {
  jQuery(this).attr('src', 'images/bg-senden.jpg');
   }
 );
});

jQuery(function() {
	jQuery('input[type=text][title!=""]').each(function() {
   if ($.trim(jQuery(this).val()) == '') jQuery(this).val(jQuery(this).attr('title'));
   if (jQuery(this).val() == jQuery(this).attr('title')) jQuery(this).addClass('exampleText');
  }).focus(switchText).blur(switchText);
  
  jQuery('form').submit(function() {
   jQuery(this).find('input[type=text][title!=""]').each(function() {
    if (jQuery(this).val() == jQuery(this).attr('title')) jQuery(this).val('');
   });
  });	
});

 function switchText()
{
 if (jQuery(this).val() == jQuery(this).attr('title'))
  jQuery(this).val('').removeClass('exampleText');
 else if ($.trim(jQuery(this).val()) == '')
  jQuery(this).addClass('exampleText').val(jQuery(this).attr('title'));
}
