
$(function(){
    $('ul.top-menu').superfish({ 
        delay: 50,
        animation: {opacity:'show',height:'show'},
        speed: 'fast',
        autoArrows:  true,
        dropShadows: true
     }); 
     $(function() {
        $('.tipsy').tipsy({fade: false, gravity: 'n'});
     });
     $("#search_property").click(function(e){
         var formObj=document.getElementById("search_form");
         try{e.preventDefault();}catch(err){}
         formObj.submit();
     })
});


