/**
	@class
	@description embeddable Web widget
*/
REFRESH_APP.webWidget = {
	/**
		Init
	*/
	init: function() {
		REFRESH_APP.webWidget.lightInit();
	},
	/**
	*	Start the lightbox for sidebar widget
	*/
	lightInit: function(){	
		$('a.widget-button, #widget-footer a').live('click', function(event) {
			event.preventDefault();
		});	
		
		$('#widget_edit_link').click( function(e) {
			e.preventDefault();
			var ideaUrl = $(this).attr('rel');			
			$.fn.colorbox({
				href:'/widget/edit/?i='+ideaUrl,
				scrolling:false,
				open:true,
				speed:300,
				innerHeight: 500,
				innerWidth: 500
			});		
		});
	}
};

$(document).ready(function(){
	REFRESH_APP.webWidget.init();
});
