var actual;
var timeout;
var dot;

$(document).ready(function(){
	$('.pictureContainer').hide();	
	actual= $('.pictureContainer:first').show();
	dot = $('.promoDotted .dot:first').addClass('selected');
	timeout= setTimeout('changeAdv();', 4000);
	
	var dotted_width= $('.promoDotted .dot').length*$('.promoDotted .dot').outerWidth(true);
	$('.promoDotted').css('width', dotted_width+'px');
	
	$('.searchType a').click(function() {			
		$('#searcher').val($(this).html());
		$('#mainSearcher').submit();
	});	
	$('#mainSearcher input[type="image"]').click(function() {
	    if(_L['SBI'] == $('#searcher').val()) {
		$('#searcher').val("");
	    }
	});
	
	
});

function changeAdv()
{
	$('.pictureContainer').hide();
	$('.promoDotted .dot').attr('class', 'dot');
	
	if ($(actual).next().get()=='')
	{
		actual= $('.pictureContainer:first').show();
		dot = $('.promoDotted .dot:first').addClass('selected');
	}
	else
	{
		actual= $(actual).next().show();
		dot = $(dot).next().addClass('selected');
	}
	
	timeout= setTimeout('changeAdv();', 4000);
}
