﻿$(function() {
    if (typeof (lang) == "undefined") lang = 'en';
    $("h1.logo a").attr("href", 'index.aspx?Lang=' + lang);
    $(".intro").parent().attr("href", 'index.aspx?Lang=' + lang);
    $(".targetnew").attr('target', '_blank');
    $('.fg-button').hover(
	    function() { $(this).removeClass('ui-state-default').addClass('ui-state-focus'); },
	    function() { $(this).removeClass('ui-state-focus').addClass('ui-state-default'); }
    );
    $('#flat').menu({
        content: $('#flat').next().html(), // grab content from this page
        showSpeed: 400
    });


    //$('.prodotti').hover( onprodotti, outprodotti);
    var apositionOpts = {
        posX: 'left',
        posY: 'bottom',
        offsetX: 0,
        offsetY: 0,
        directionH: 'right',
        directionV: 'down',
        detectH: false, // do horizontal collision detection  
        detectV: false, // do vertical collision detection
        linkToFront: false
    }

    $.get("prodotti_menu.aspx?lang=" + lang, function(vdata) { // grab content from another page
        $("#prodotti").menu({ content: vdata, flyOut: true, width: "200px", positionOpts: apositionOpts });
    });


});


