$(document).ready(function()
{
	$('.slideshow').cycle({
		fx: 'fade',
		timeout: 4000
	});
	$('#searchText')
		.bind('focus', function()
		{
			if($(this).val() == 'Baraj proizvodi')
			{
				$(this).val('');
			}
		})
		.bind('blur', function()
		{
			if($(this).val() == '')
			{
				$(this).val('Baraj proizvodi');
			}
		});
});
