$(function(){
    $('#news-fading-image').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 5000,
        next:   '#next', 
  prev:   '#prev', 
  pager:   '#navv'
    });
});

$(document).ready(
        function(){
          $('.partners .blank-content').cycle({
            fx:    'fade',
            random: true,
            speed:  2000     
          });
          $('.results .box-content').cycle({
            fx:    'fade',
            random: true,
            speed:  2000     
          });                         
      });

$(document).ready(function(){
$("#news-wrap").each(function(){
      $(this).removeClass("loadingcycle");
});
$(".loadingbox").each(function(){
      $(this).removeClass("loadingimage");
});
});

function clickclear(thisfield, defaulttext) {
if (thisfield.value == defaulttext) {
thisfield.value = "";
}
}

function clickrecall(thisfield, defaulttext) {
if (thisfield.value == "") {
thisfield.value = defaulttext;
}
}

