		// executes when document loads
		$(document).ready(function(){
	
	
			// watch for changes in state-field and update city-fields
			$(".hover").hover(function() {
				$(this).addClass('tr-hover');
				}, function() {
				$(this).removeClass('tr-hover');
			});
			
			$('tr').click(function() {
				var adtype = $(this).attr('id');
				var adid = $(this).attr('name');
				if (adtype == 1) {
					location.href='visapartner/'+adid;
				} else if (adtype == 2)  {
					location.href='visaannons/'+adid;
				} else if (adtype == 3)  {
					location.href='visaannons/'+adid;
				} else if (adtype == 4)  {
					location.href='visagym/'+adid;
				}
			});
			
		});
