$(document).ready(function(){
   $('#menu li').mouseover(function(){
      $(this).children('ul.sub').css({width: 'auto', top: '77px', display:'block'});
   });
   
   $('#menu li').mouseout(function(){
      $(this).children('ul.sub').css('display', 'none');
   });
   
   if ($('object').length>0)
      $('#blahblasbla').hide();
      
   $(function(){
	   $('#menu li .mainlink').each(function(){
	   	if ($.browser.msie) {var length = 14;}
			else {var length = 18;}
	      if ($(this).text().length> length) {
	         $(this).html($(this).text().replace(' ', '<br />'));
	         if ( $(this).find('br').length>0 )
	            $(this).addClass('lines');  
	      }
	   });
	});
	
	$('.on_top').click(function() {
		$('html, body').animate({scrollTop: $('#container').height() - $('.on_top').height()},1500);
		return false;
	}); 
	
	
	if ($('#content').children().is(".right_img_contact")) {
		$('#content').children('.cont').addClass('right_bl');
	}
	else {
	   $('#content').children('.cont').removeClass('right_bl');
	}
});
