$(document).ready(function(){
//TRAZILICA U HEADERU
  $('#fast_search').focus(function(){ 
    if($(this).val() == $(this).attr('defaultValue'))
    {
      $(this).val('');
    }
  });
  
  $('#fast_search').blur(function(){
    if($(this).val() == '')
    {
      $(this).val($(this).attr('defaultValue'));
    } 
  });





//SLIDER TEXA U HEADERU
	$('#slajder').innerfade({
	animationtype: 'slide',
		speed: 750,
		timeout: 7000,
		type: 'sequence',
		containerheight: 'auto'
	});

}); 





