function initSite() {
  $('form .input').each(initInput);
  $('h1').each(h1Replace);
  $('h2').each(h2Replace);
  $('#free-designs').pngFix();
}

function initInput() {
  $(this).focus(inputFocus);
  $(this).blur(inputBlur);
}

function inputFocus() {
  if(this.value == this.title)
    this.value = '';
}

function inputBlur() {
  if(this.value == '')
    this.value = this.title;
}

// flash text replace
function h1Replace(index, element){
   $(this).flash({
      swf: 'http://www.impactmenusystems.com//images/uploads/fonts/segoe_print_replace.swf',
      flashvars: { text : $(this).html(),  color : '#74b2df',  width : $(this).width(),  height : $(this).height()+10, size : 24, align : 'left', line : 0,  spacing : -0.5 },
      height: $(this).height()+10, width: $(this).width(), bgcolor: '#eeeeee', wmode: 'transparent'
      });
}
function h2Replace(index, element){
   var align = 'left';
   if( $(this).attr('class') == 'center') align = 'center';
   $(this).flash({
      swf: 'http://www.impactmenusystems.com//images/uploads/fonts/segoe_print_replace.swf',
      flashvars: { text : $(this).html(),  color : '#74b2df',  width : $(this).width(),  height : $(this).height()+8, size : 20, align : align, line : 0,  spacing : -0.5 },
      height: $(this).height()+8, width: $(this).width(), bgcolor: '#eeeeee', wmode: 'transparent'
      });
}

$(document).ready(initSite);