/**
 *	@author		Daniel Bulli
 *	@email		daniel.bulli@nuff-respec.com
 *	@link		http://www.nuff-respec.com
 *	@version	1.0
 *
 * @history
 * 07.29.2010		dbuli		Initial Version
 */

	
	/**
	 * initialize when everything is ready to go
	 */
	$(document).ready(function ()
	{
		$('#photos a').poshytip({
			className: 'tip-twitter',
			offsetX: -2,
			offsetY: 10,
			alignTo: 'target',
			alignX: 'inner-left',
			showTimeout: 1,
			content: function(updateCallback) {
				var alt = $(this).attr('rel');
				var container = $('<div/>').addClass('roll-thumb');
				container.append($('<img/>').attr('src', alt));
				return container;
			}
		});
	});
	
		
		
	////////////////////////////////////////////////////////////
	//
	// MISCELLANEOUS
	//
	////////////////////////////////////////////////////////////
			
						
	loadedFlash = function(e) 
	{
		//alert("e.success = " + e.success +"\ne.id = "+ e.id +"\ne.ref = "+ e.ref);	
	}
		
		
	logit = function($text) 
	{
		if(window.console && window.console.firebug) 
		{
			console.log($text);
		}
	}
