$(document).ready(function(){
	
	$('a.streampadPlayerbutton').live('click',function (){
	SPAPI.play()
	return false;
	});

	
	// Colorbox initiation
	// Add 60px to width, 90px to height
	
	$(".colorbox").colorbox({transition:"elastic",height:"90%"});
	$(".youtube").colorbox({iframe:true, innerWidth:650, innerHeight:550});
	$(".inline").colorbox({inline:true, href:"#mp3sample", innerWidth:400, innerHeight:27});
	
	// Blend initiation
	
	$('a.purchase').blend();
	$('a.more').blend();
	$('a.rsvp').blend();
	$('li.video a').blend();
	$('li.mp3 a').blend();
	$('li.website a').blend();


	// Tooltip initiation
	
	$("#optin :input.subscribe").tooltip({

		// place tooltip on the right edge
		position: "center left",

		// a little tweaking of the position
		offset: [-2, 30],

		// use the built-in fadeIn/fadeOut effect
		effect: "fade",

		// custom opacity setting
		opacity: 0.85

			});	
	
	// Index page See All Events 
	
	$("a#longlist").click(function(){
				$(".longlist").css("display","inline;").slideDown("slow");
				$(this).css("display","none");
				return false;
			});
	
	
});


