﻿$(document).ready(
    function() {
        $('#query_submit').click(function() {
            $('#search_form').hide();

            $('#search_box').append('<span id="search-indicator"><img id="indicator-image" src="/images/progress/white.gif" /><span id="indicator-text">S&ouml;ker...</span></span>');


            $.post('/sites/reseguider/client/find.ashx',
                { t: $('#query_target').val(), ref: window.location.pathname },
                function(data) {
                    if (data == 'n/a') {
                        window.location = '/hitta-reseguide/' + $('#query_target').val();
                    } else {
                        window.location = data;
                    }
                }
             );

            return false;
        });

        var youtubeClips = $('.youtube')

        youtubeClips.flash(
            { height: 370, width: 450 },
            { version: 8 },
            function(htmlOptions) {
                $this = $(this);
                htmlOptions.src = $this.attr('href');
                $this.before($.fn.flash.transform(htmlOptions));
            }
        );

        youtubeClips.each(function() {
            $(this).hide();
        });

        $("[id^=travelguide-]").click(function() {
            var elemId = $(this).attr('id');
            var parts = elemId.split('-');
            var tgId = parts[1];
            $.get("/sites/reseguider/client/travelguide-click.ashx?tg=" + tgId);
            
            
        }
        );

    }
);

