	   
    jQuery(document).ready(function(){ 
        jQuery("ul.menu").superfish({ 
            animation: {height:'show'},   // slide-down effect without fade-in 
            delay:1200               // 1.2 second delay on mouseout 
        }); 

		jQuery('a[title="Appointments"]').bind('click', function() {
			var url = document.domain;
            var path = "http://"+url+"/wp-content/themes/th_theme/form.php";
            if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
                
            	window.open(path);
				//alert(path);
                
            } else {
			jQuery('a[title="Appointments"]').attr("href",path).addClass("greybox");
			var t = this.title || $(this).text() || this.href;
		    GB_show(t,this.href,815,600);
		    return false;
            }
		});
    }); 

