// JavaScript Document
$(document).ready(function() {
	$("#SMServices a, #SMServices a, #TourTitle a").click(function() {
		var url=$(this).attr("href");
		$("#bannertitle ul").slideUp("normal");
		 $("#bannertitle ul").queue(function () {
			window.location=url;
		});
	return false;
	});
	
	
});