$(document).ready(function() {	
	$("#menu a, #menu ul, #menu li")
     .bind( "mouseenter", function(){ $(this).addClass("hover"); } )
     .bind( "mouseleave", function(){ $(this).removeClass("hover"); } )
	;
	
	$(".for-webmaster .block, .for-advertiser .block").equalHeights();

	//$('input[title]').tinyTips('light', 'title');
	$('input[title],a[title],textarea[title],select[title]').tinyTips('light', 'title');

	var _h = $(".b-footer").height();
	$(".w-footer").height(_h+20).css('margin-top',(_h+20)*-1);
	$(".w-body").css('padding-bottom',_h+30);
	
	if ($.browser.msie) {
		$(".for-webmaster, .for-advertiser").equalHeights();
		$('.for-webmaster, .for-advertiser').each(function(){ 
			$(this).height($(this).height()+25);
		});
		$('.for-webmaster .block, .for-advertiser .block').each(function(){ 
			$(this).height($(this).height()+25);
		});
	}
}) 
