        $(document).ready(function(){
            // Action event on link to display iframe
            $('#bw-a-hotel').click(function () {
                // Tabs
                $("#bw-li-hotel").addClass('on');
                $("#bw-li-flight").removeClass('on');
                $("#bw-li-carhire").removeClass('on');

                // iFrame
                $("#i017").show();
                $("#i015").hide();
                $("#i016").hide();

                if ( $("#iframeZone").length > 0 ) {
                    $("#iframeZone").removeClass('flight');
                    $("#iframeZone").removeClass('car');
                    $("#iframeZone").addClass('hotel');
                }

                return false;
            });
            $('#bw-a-flight').click(function () {
                // Tabs
                $("#bw-li-hotel").removeClass('on');
                $("#bw-li-flight").addClass('on');
                $("#bw-li-carhire").removeClass('on');

                // iFrame
                $("#i017").hide();
                $("#i015").show();
                $("#i016").hide();

                if ( $("#iframeZone").length > 0 ) {
                    $("#iframeZone").removeClass('hotel');
                    $("#iframeZone").removeClass('car');
                    $("#iframeZone").addClass('flight');
                }

                return false;
            });
            $('#bw-a-carhire').click(function () {
                // Tabs
                $("#bw-li-hotel").removeClass('on');
                $("#bw-li-flight").removeClass('on');
                $("#bw-li-carhire").addClass('on');

                // iFrame
                $("#i017").hide();
                $("#i015").hide();
                $("#i016").show();

                if ( $("#iframeZone").length > 0 ) {
                    $("#iframeZone").removeClass('flight');
                    $("#iframeZone").removeClass('hotel');
                    $("#iframeZone").addClass('car');
                }

                return false;
            });
        });
