 $(document).ready(function(){
 $('#hcoll').css('opacity','0.6');
 $('#hcoll').css('-moz-border-radius','15px');
 $('#hcoll').css('-webkit-border-radius','15px');
 $('#hcoll').css('-khtml-border-radius','15px');
 $('#hcoll').css('border-radius','15px');
 $('#hcoll').css('behavior','url(border-radius.htc)');
 $('#logo').bind("click", function(){
 top.location.replace('http://superpotolki.com');
 });
 $('#logo').hover(function () {
 $(this).css('cursor','pointer');
 });
 $('#topMenuUl li .normalMenu').each(function(){
 $(this).before($(this).clone().removeClass().addClass('hoverMenu'));
 });
 $('#topMenuUl li').hover(function(){
 $(this).find('.hoverMenu').stop().animate({marginTop:'0px'},200);
 },
 function(){
 $(this).find('.hoverMenu').stop().animate({marginTop:'-25px'},200);
 });
 $('a.normalMenu').css('opacity','0.4');
 $('a.hoverMenu').css('opacity','1');
 });
