/*
 * Custom tweaks for the AZTourist website.
 */

//Used to remove link to the "listings" category. Relies on jquery.
var $j = jQuery.noConflict();

$j(document).ready(function () {
	$j('a[title="View all posts in Listing"]').css('display', 'none');
});
