Cufon.replace('#contentMain h2', { textShadow: '#9ca714 1px 1px',fontFamily: 'headline' });

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

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

$(document).ready(function() {
 $('#images').hover(
   function () {
  $(this).attr('src', 'images/bg-absenden-hover.jpg');
   }, 
   function () {
  $(this).attr('src', 'images/bg-absenden.jpg');
   }
 );
 $('#quick-submit').hover(
   function () {
  $(this).attr('src', 'images/bg-absenden-hover.jpg');
   }, 
   function () {
  $(this).attr('src', 'images/bg-absenden.jpg');
   }
 );
});
