///// Jcorner
$(document).ready(function() {
   $('.IDX-showcasePhoto img').corner("4px");
      $('img.whiteborder').corner("4px");
});


///// agent showcase modifications & tooltips
$(document).ready(function() {
	  var bio = $('.IDX-agentShowcaseDetails a').attr("href");
      $(".bio").attr("href", (bio));
      $('.biodiv').insertAfter($('#IDX-agentShowcasePhone'));
      $("#mycarousel img[title]").tooltip();
});


///// jcarousel
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
      wrap: 'circular'
    });
});


///// sliding contact form
$(document).ready(function(){

    $("#contactLink").click(function(){
        if ($("#contactForm").is(":hidden")){
            $("#contactForm").slideDown("slow");
        }
        else{
            $("#contactForm").slideUp("slow");
        }
    });

});

function closeForm(){
    $("#messageSent").show("slow");
    setTimeout('$("#messageSent").hide();$("#contactForm").slideUp("slow")', 2000);
}

///// tabs
$(document).ready(function() {
    $('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
});

///// naples foreclosures
$(document).ready(function() {
   $('#faddress').html($('#IDX-showcaseWrapper-Foreclosures .IDX-showcaseAddress'));
   $('<br/><br/>').insertAfter('#IDX-showcaseWrapper-Foreclosures .IDX-showcasePrice');
   $('#fprice').html($('#IDX-showcaseWrapper-Foreclosures .IDX-showcasePrice'));
   $('.IDX-showcaseAddress').wrap('<a href="#" class="flink" />');
   var link = $('#IDX-showcaseWrapper-Foreclosures .IDX-showcasePhoto .clean').attr("href");
   $(".flink").attr("href", (link));
});

///// bonita foreclosures
$(document).ready(function() {
   $('#faddress-bonita').html($('#IDX-showcaseWrapper-ForeclosuresBonita .IDX-showcaseAddress'));
   $('<br/><br/>').insertAfter('#IDX-showcaseWrapper-ForeclosuresBonita .IDX-showcasePrice');
   $('#fprice-bonita').html($('#IDX-showcaseWrapper-ForeclosuresBonita .IDX-showcasePrice'));
});

///// fort myers foreclosures
$(document).ready(function() {
   $('#faddress-fortmyers').html($('#IDX-showcaseWrapper-ForeclosuresFortMyers .IDX-showcaseAddress'));
   $('<br/><br/>').insertAfter('#IDX-showcaseWrapper-ForeclosuresFortMyers .IDX-showcasePrice');
   $('#fprice-fortmyers').html($('#IDX-showcaseWrapper-ForeclosuresFortMyers .IDX-showcasePrice'));
});


$(document).ready(function() {
$('#featuredPropertyPhoto').html($('#IDX-slideshowImage'));
$('#featuredPropertyPrice').html($('#IDX-priceLine'));
$('#featuredPropertyAddress1').html($('#IDX-addressLine'));
$('#featuredPropertyAddress2').html($('#IDX-cszLine'));
});

///// choose office/search agents
function OnSubmitForm()
{
  if(document.officeid.oid[0].checked == true)
  {
    document.officeid.action ="http://homes.downingfryerealestatecompany.com/idx/4643/roster.php?oid=1";
  }
  else
  if(document.officeid.oid[1].checked == true)
  {
    document.officeid.action ="http://homes.downingfryerealestatecompany.com/idx/4643/roster.php?oid=2";
  }
  return true;
}
