You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
$(function(e) {
|
|
createImageLoader();
|
|
$('span.closeMap').click(function(){
|
|
$(this).parent('.tourMap').fadeOut();
|
|
});
|
|
$('.viewMap a.show').click(function(){
|
|
var tar = $(this).parent('.viewMap').children('.tourMap');
|
|
tar.is(":visible") ? null : tar.fadeIn();
|
|
});
|
|
});
|