
$(document).ready(function()
{

if( $("#set-home").length )
{
	play_audio();
	return null;
}

$("#img-collection a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'light_square',slideshow:5000, autoplay_slideshow: false});
$("#about-us-info a[rel^='prettyPhoto']").prettyPhoto({});

});

function play_audio()
{
	if( typeof(soundManager) == 'undefined' )
	{
		return;
	}
		
	soundManager.onload = function() 
	{
		soundManager.createSound(
		{
		  id: 'rollover',
		  url: 'snippet.mp3',
		  autoLoad: true,
		  autoPlay: true,
		  volume: 5
		  });
  
  	}
  
}

