var $j = jQuery.noConflict();

$j(function(){
	$j('.openPanel a').click(function(){
		$j($j(this).attr("href")).show("fast");
		return false;
	});
	$j('.closePanel a').click(function(){
		$j(this).parents('.panelBlock').hide("fast");
	});
	$j('#hotelMapList').tabs({ fxSlide: true, fxSpeed: 'fast' });
});
