$(document).ready(function(){

var total = $('#bannerimgs img').length;
var rand = Math.floor(Math.random()*total);
$('#bannerimgs').nivoSlider({
  effect:'fade',
  directionNav:false,
  controlNav:false,
  pauseOnHover:false,
  animSpeed:2000,
  pauseTime:6000,
  captionOpacity: 0,
  startSlide:rand
});

$("a[rel^='prettyphoto']").prettyPhoto({
	animationSpeed: 'fast',
	padding: 40,
	opacity: 0.35,
	showTitle: true,
	allowresize: true,
	counter_separator_label: ' of ',
	theme: 'light_rounded'
});

$("#textinfo").hide();

$("#about-wizzy").click(function() {
  $("#about-info:hidden").slideDown("fast");
	$("#text-info:hidden").fadeIn("fast");
});

$("#about-info").click(function () {
  $("#text-info").fadeOut("fast");
	$("#about-info").slideUp("fast");
});

});
