$(document).ready(function(){
	
	$(".section ul.travelDealOffer > li").find("p.title").addClass("strong");
	$("ul.travelDealOffer li div.img a[target=_blank]").colorbox( { iframe: true, width: "95%", height: "95%" } );
	$('img.externalURL').remove();
	
	// Page Highlighting
	$("div.pageNav > a[name]").each(function(){
		if ($(this).attr('name') == pagename) {
			$(this).css("color", "#fff799");
		}
	});
});

