$(document).ready(function() {
	
$("#storitve").tabs(".info-box", {
	effect: 'fade',
	fadeInSpeed: "50",
	fadeOutSpeed: "50",
	rotate: true
// use the slideshow plugin. It accepts its own configuration
}).slideshow({
	autoplay: true,
	interval: "10000",
	clickable: false
}); 
});

$(document).ready(function()
{$("#boxes>div:even").addClass("cb");
}
);

$(function(){
	$('input[type="text"],textarea').focus(function(){
		$(this).addClass("active");
	});
	
	$('input[type="text"],textarea').blur(function(){
		$(this).removeClass("active");
	});
});
