$(document).ready(function() {
    inner_html = "";
    if ( navigator.appName == "Microsoft Internet Explorer" )
    {
        if ( navigator.appVersion.indexOf( "MSIE 6.0" ) != -1 )
        {
            message = "";
            if ( $('html').attr('lang') == "hr" )
            {
                message = 'Microsoft Internet Explorer 6.0 ne podržava moderne internet standarde te zbog toga ovu stranicu nećete vidjeti kao što je zamišljeno. Molimo instalirajte preglednik koji poštuje standarde kao <a href="http://www.mozilla.com/firefox/">Mozilla Firefox</a>.';
            }
            else
            {
                message = 'Microsoft Internet Explorer 6.0 does not support modern internet standards so this page may not display properly on your screen. Please update to a standard compliant browser like <a href="http://www.mozilla.com/firefox/">Mozilla Firefox</a>.';
            }
            inner_html = '    <div id="ie6_warning" style="width: 950px;">' + message + '</div>';
        }
    }
    message = "";
    if ( $('html').attr('lang') == "hr" )
    {
        message = 'Vaš preglednik ne podržava ugrađene stranice.';
    }
    else
    {
        message = 'Your browser does not support embedded pages.';
    }
    $("#mobile_demo").html( inner_html + '    <div style="padding: 58px 0 0 29px;"><iframe src="http://m.tardigrada.hr/' + $('html').attr('lang') + '/" width="242" height="400" frameborder="0"><p>' + message + '</p></iframe></div>' );

    $("a[rel=#mobile_demo]").overlay({expose: '#000'});
});
