$(document).ready(function(){
    $('.topMainMenu li').mouseover(function(){
        attrPNG = $('img.iePNG', this).attr('src');
        attrPNGNew = attrPNG.replace("stars","starsAct");
        $('img.iePNG', this).attr('src',attrPNGNew);
    }
    );

    $('.topMainMenu li').mouseout(function(){
        $('img.iePNG', this).attr('src',attrPNG);
    }
    );

	$('#select_lang').change(function(){
		window.location = "http://translate.google.ru/translate?hl=ru&sl=ru&u=http://rznpuppet.ru/&tl=" + $(this).val();
	});
});

/*min-width для ie*/
var d = document;
var winIE = (navigator.userAgent.indexOf('Opera')==-1 && (d.getElementById && d.documentElement.behaviorUrns)) ? true : false;

function bodySize(){
    if(winIE && d.documentElement.clientWidth) {
    sObj = d.getElementsByTagName('body')[0].style;
    sObj.width = (d.documentElement.clientWidth<1003) ? '1003px' : '100%';
    }
}

function init(){
    if(winIE) { bodySize(); }
}
onload = init;
if(winIE) { onresize = bodySize; }




