$(function() {
	setInterval('imgRotator()', 3500);
	
	$('#searchword').focus(
	function(){
		if ($(this).val() == 'поиск...') $(this).val('');
	});
	$('#searchword').blur(
	function() {
		if ($(this).val() == '') $(this).val('поиск...');
	});
	
	$('#alles a').css({paddingLeft:'0'});
	
	$('#alles').hover(function() {
		$(this).children('a').stop().animate({paddingLeft:'100'});
	}, function() {
		$(this).children('a').stop().animate({paddingLeft:'0'});
	});
	
	$('#menu li').hover(function() {
		$(this).children('ul').stop(true, true).slideDown();
	}, function() {
		$(this).children('ul').delay(200).slideUp();
	});
})

function imgRotator() {

	var curimg = $('#imgcont div.current');
	var nextimg = curimg.next();
	if (nextimg.length == 0)
		nextimg = $('#imgcont div:first');
		
	curimg.removeClass('current').addClass('previous');
	nextimg.css({opacity:0.0}).addClass('current').animate({opacity:1.0}, 1200,
		function() {
			curimg.removeClass('previous')
		});
}

