/*
To make rez links use "a" tag's "target", replace line "pageTracker..." with next one:
window.open(pageTracker._getLinkerUrl('https://www.reztrip.com/RezTripWeb/defaultSearchDisplay.do?propertyId=4259331'),this.target);
If need open them in blank page:
window.open(pageTracker._getLinkerUrl('https://www.reztrip.com/RezTripWeb/defaultSearchDisplay.do?propertyId=4259331'), '_blank');
*/

$( document ).ready( 
	function()
	{
		$( 'a.menu-item-link[@rel="Reservation"]' ).click(
			function( e )
			{
    			        pageTracker._link( $( this ).attr( 'href' ) );
                                return false;
			}
		);
		$( 'a.footer_reservation' ).click(
			function( e )
			{
    			        pageTracker._link( $( this ).attr( 'href' ) );
                                return false;
			}
		);		
		$( 'a.reservation_link' ).click(
			function( e )
			{
    			        pageTracker._link( $( this ).attr( 'href' ) );
                                return false;
			}
		);		
		$( 'div.booknow-area-content a.action' ).click(
			function( e )
			{
    			        pageTracker._link( $( this ).attr( 'href' ) );
                                return false;
			}
		);		
		$( 'a.special_reservation_link' ).click(
			function( e )
			{
    			        pageTracker._link( $( this ).attr( 'href' ) );
                                return false;
			}
		);		
	}
 );

