$(document).ready(function(){ 
    $(document).pngFix(); 

    $('a.ext').attr('target', '_blank');

    $('#shopit-footer select').change( function() {
        var id = $('#shopit-footer select option:selected').val();
        window.location='http://www.elisa.fi/tarjoukset/myymalat.cfm?id='+ id;
    });

    if (!$('body').hasClass('services')) {
        $('#navi .palvelut').click( function(e) {
            e.preventDefault();

            var w = Math.round( $(window).width() / 2 - 380 );

            $('#services-container').css('left', w+'px');

            $('#navi #tab_palvelut').toggleClass('active');
            $('#services-container').slideToggle();
        });
    }
});