

$(document).ready(function(){
						if (jQuery.browser.msie && parseInt(jQuery.browser.version) == 6) {
						} else {

$("#buttons li a").mouseover(function(){
		$(this).parent().children("div").stop(false,true).slideToggle("fast");
});

$("#buttons li a").mouseout(function(){
		$(this).parent().children("div").stop(false,true).slideToggle("fast");
});

$("#link").click(function(){
		$(this).fadeOut("slow");
});
						}

$("#eng").wTooltip();
$("#sl").wTooltip();

});



