﻿$(document).ready(function() { 

//	Activate once live
// 	$("form.form, form.validate").validate({
	$("form.form").validate({

		// set this class to error-labels to indicate valid fields
		success: function(label) {
			label.addClass("checked");
		}
	});
	
	$("p.fancy a").fancybox({ 'overlayShow': true });
	$("td.fancy a").fancybox({ 'overlayShow': true, 'frameWidth': 980 });

	$('div.toggle> div, div.reveal> div').hide(); 
	$('div.toggle> h2, div.reveal> p').click(function() {
	  var $nextDiv = $(this).next();
	  var $visibleSiblings = $nextDiv.siblings('div:visible');
   
	  if ($visibleSiblings.length ) {
		$visibleSiblings.slideUp('fast', function() {
		  $nextDiv.slideToggle('fast');
		});
	  } else {
		 $nextDiv.slideToggle('fast');
	  }
	});

	$('div.donate, div.contact, div.shop, div.offers, div.click, #sidebar div.news, #sidebar div.shop, #sidebar div.offers, #sidebar div.events, #sidebar div.lottery, #sidebar div.comments, #sidebar div.whats-new, #sidebar div.basket, div.news').fitted();

	$('#header,#fancy_wrap,table.confirm').pngFix();
	
		// setup the audio player
		AudioPlayer.setup('/_swf/player.swf', {
			width:				'150',
			initialvolume:		'60',
			noinfo:				'yes',
			transparentpagebg:	'yes',
			autostart: 			'no',
			loop:				'no',
			animation:			'no',
			bg: 				'0022A3',
			leftbg: 			'4A64BF',
			rightbg: 			'4A64BF',
			lefticon:			'CCD2ED',
			righticon:			'CCD2ED',
			rightbghover:		'CCD2ED',
			voltrack:			'CCD2ED',
			volslider:			'FFFFFF',
			tracker:			'4A64BF',
			track: 				'0022A3',
			border: 			'0022A3',
			text: 				'FFFFFF',
			loader:				'C8D9E4'
		});

		AudioPlayer.embed('jingle', {  
			soundFile:	'http://www.compton-hospice.org.uk/_swf/32879%20-%20Compton%20House%20-%20Why%20not.mp3'
// 			titles:		'Text Appeal',
// 			artists:	'Compton Hospice'
		});


}); 

