$(document).ready( function() {

	
	// Pretty Photo plugin
	$(document).ready(function(){
		$("a[rel^='vidbox']").prettyPhoto({
			autoplay: true,
			showTitle: false,
			allowresize: false,
			hideflash: true,
					});
		
		$("a[rel^='vidbox']").live('mousedown', function() {
			//stopAllSounds();
		});
		
		$("a[rel^='vidbox']").live('click', function() {
			var images = $(this).attr('href');
			var titles = ($(this).find('img').attr('alt')) ?  $(this).find('img').attr('alt') : '';
			var descriptions = ($(this).attr('title')) ?  $(this).attr('title') : '';
			
			$.prettyPhoto.open(images,titles,descriptions);
			
			return false;
		});
		

	}	);
	
});

