function jalert(mess) {
  $("#jalert_message").html(mess);
  $(".over_over").show();
  $(".jalert_div").fadeIn(200);
}

  $(document).ready(function(){
    $("span.rsz").click(function(){
  rid = $(this).attr("rel");
  $("div.resize_text").css("font-size",rid+"px");
    })
  $(".mailform").ajaxForm(function(data){jalert(data);})

  $(".qform").ajaxForm(function(data){
   if (data == "!!!") window.location.assign("[(site_url)][~18~]");
   else jalert(data);
   })

  $(".over_over").click(function(){ 
    $(this).hide();
    $(".jalert_div").fadeOut(200);
  })

$("#close").click(function(){ 
    $(this).hide();
    $(".jalert_div").fadeOut(200);
  })

  })

$(document).ready(function(){
$('#slide').cycle({ 
    fx:    'fade', 
    speed:    3000, 
    timeout:  2000 
});
})


