function bulletTools()
{
	//--------------------------------------
	// VARS
	//--------------------------------------
	
	
	
	//--------------------------------------
	// INIT
	//--------------------------------------
	
	this.init = function()
	{
	}
	
	
	
	//--------------------------------------
	// VIDEO ABOUT
	//--------------------------------------

	this.videoaboutInit = function()
	{
		// AJAX
		var ajax = ajaxInit();
		
		if(ajax)
		{
			ajax.open( "GET", globalURL + "wp-content/themes/talkability/bullet-videoabout.php", true );
			
			ajax.onreadystatechange = function()
			{
				if( ajax.readyState == 4 )
				{
					$( "#bullet_videoabout" ).html( ajax.responseText );
					
					// ON LOAD
					$('body').trigger( 'bulletToolsOnVideoLoadEvent' );
				}
			}
			
			ajax.send(null);
	 	}
	}
	
	
	
	//--------------------------------------
	// NOW PLAYING
	//--------------------------------------

	this.nowPlayingInit = function()
	{
		// AJAX
		var ajax = ajaxInit();
		
		if(ajax)
		{
			ajax.open( "GET", globalURL + "wp-content/themes/talkability/bullet-nowplaying.php", true );
			
			ajax.onreadystatechange = function()
			{
				if( ajax.readyState == 4 )
				{
					$( "#bullet_nowplaying" ).html( ajax.responseText );
					
					// ON LOAD
					$('body').trigger( 'bulletToolsOnNowplayingLoadEvent' );
				}
			}
			
			ajax.send(null);
	 	}
	}
	
	
	
	//--------------------------------------
	// PODBILITY
	//--------------------------------------

	this.podbilityInit = function()
	{
		// AJAX
		var ajax = ajaxInit();
		
		if(ajax)
		{
			ajax.open( "GET", globalURL + "wp-content/themes/talkability/bullet-podbility.php", true );
			
			ajax.onreadystatechange = function()
			{
				if( ajax.readyState == 4 )
				{
					$( "#bullet_podbility" ).html( ajax.responseText );
				}
			}
			
			ajax.send(null);
	 	}
	}
}
