$(document).ready(function() {
						   
	/***********************************************************
		TOOLTIPS
	***********************************************************/
						   
	$("#demo img[title]").tooltip({
		position:	"center right",
		tip:		"#demotip",
		effect:		"fade",
		offset:		[0, 10]
	});
	
	$("img.vidcap[title]").tooltip({
		position:	"center right",
		tip:		"#vidcap",
		effect:		"fade",
		offset:		[0, 10]
	});

	/***********************************************************
		OVERLAYS
	***********************************************************/

	// setup overlay actions to buttons
	$("img.video[rel]").overlay({

		// use the Apple effect for overlay
		effect: 'apple',		
		expose: '#000',				
		
		onLoad: function(content) {
			// find the player contained inside this overlay and load it
			this.getOverlay().find("a.player").flowplayer(0).load();
		},
		
		onClose: function(content) {
			$f().unload();
		}
	});				
		
	// install flowplayers
	$("a.player").flowplayer("http://209.67.29.61/~changebr/flash/flowplayer-3.1.3.swf");
	
	
	// audio clip overlay control
	$(".audio_clip_popup").overlay({
		effect: 'apple',
		expose: '#000'
	});
	
	/***********************************************************
		AUDIO CLIP PLAYER
	***********************************************************/
	
	$(".mp3").jmp3();
	
});