﻿$(document).ready(function () {
    // Menu
    $('.main_menu ul li').each(function () {
        $(this).hoverIntent(function () {
            $(this).find('ul').slideDown("fast");
        },
		function () {
		    $(this).find('ul').slideUp("fast");
		});
    });

    //tabs
    $("#featured").tabs({ fx: { opacity: "toggle"} }).tabs("rotate", 7000, true);

    //language select
    $('#select_language').change(function () { window.location = this.value; });

    //gui fixes
    $("#highlights div.highlight").last().addClass("highlight-last");
    $(".breadcrumb a").last().addClass("last");

    //ecom table events
    $("table.recepten tr").click(function () { if ($(this).attr("href") != "") location.href = $(this).attr("href"); });

    //make highlight items equal height
    var highest_height = 0;
    $("div.highlight").each(function (index, item)
    {
        if ($(item).height() > highest_height)
            highest_height = $(item).height();
    });
    $("div.highlight").css('height', highest_height + 'px');
});


function gotoPage(i)
{

    $("#form-ecomfilter-pagenum").val(i);
    $("#form-ecomfilter").submit();
    return false;
}

