$(function(){
	// верхнее меню
	var $tm_ul = $('#top-menu ul ul')
	$('#top-menu li.level-1').hover(
		function(){
			$(this).find('a:first').css({color: '#f0776e', backgroundColor: '#bd261b'})
			$(this).find('ul').show()//slideDown({duration: 2000, easing: 'easeOutBounce'})
		},
		function(){
			$(this).find('a:first').css({color: '#fff', backgroundColor: '#e74337'})
			$tm_ul.hide()//slideUp({duration: 2000, easing: 'easeOutCirc'})
		}
	)
	
	// форма поиска в шапке
	var search_text = $('#keyword').val()
	$('#keyword')
	.focus(function(){
		if( $(this).val() == search_text )
			$(this).val('')
	})
	.blur(function(){
		if( $(this).val() == '' )
			$(this).val(search_text)
	})
	
	// всплывающие окна
//	$('a.fancy').fancybox()
	
	// PikaChoose Gallery

	// Flash
	if( $('#flash-man').length > 0 )
		swfobject.embedSWF("flash.swf"/*tpa=http://www.glassdoors.ru/inc/flash.swf*/, "flash-man", "300", "345", "8");
	/**/
})

setTimeout("blink1()", 500);
function blink1() {
	document.getElementById('vaks').style.fontWeight = "normal";
	document.getElementById('vaks').style.marginRight = "0px";
	setTimeout("blink2()", 500);
}
function blink2() {
	document.getElementById('vaks').style.fontWeight = "bold";
	document.getElementById('vaks').style.marginRight = "-4px";
	setTimeout("blink1()", 500);
}



