$(function(){ $('a.dirlnk, h4.name a, td.name h4 a, a.home_banner_ad, a.banalo, a.search').live("click", increment); $('div.h_result img.photo').error(function() { $(this).attr("src", "http://lh6.ggpht.com/_7p8tbQ5Op-w/S3hexKftj6I/AAAAAAAAAJk/7JOpC4ovQGU/s110/unavailable.png"); }); if ($('#shelter_map').length) { show_shelter_map(); } if ($('#trips_map').length) { show_trips_map(); } }); function increment() { var id; if ($(this).attr("id") == "") { id = $(this).closest("tr").attr("id").substring(5); } else { id = $(this).attr("id").substring(5); } var source; if ($(this).attr("class") != "") source = $(this).attr("class"); else source = "dirlnk"; var position = jQuery('tr.hotel').index(jQuery(this).closest('tr.hotel')); var path = document.location.pathname; $.ajax({ url: "/oldincludes/out.php", data: ({ ID: id, source: source, position: position, path: path }), async: false, cache: false }); }