$(document).ready(function ()
{
	$().piroBox({
      my_speed: 300, //animation speed
      bg_alpha: 0.5, //background opacity
      scrollImage: true,
      slideShow : true, // true == slideshow on, false == slideshow off
      slideSpeed : 7, //slideshow 
      close_all : '.piro_close' // add class .piro_overlay(with comma)if you want overlay click close piroBox
      });
	
	$('#nav span').hover(function ()
	{
		$(this).css('cursor', 'pointer');
	}, function ()
	{
		$(this).css('cursor', 'auto');
	});
	
	
	$('span.st_twitter_button').attr('displayText', 'Tweet');
	$('span.st_facebook_button').attr('displayText', 'Share');
	$('span.st_email_button').attr('displayText', 'Email');
	
});

