$(document).ready(function()
{
	$("#div_news").html("<img src='images/ajax.gif' alt='Loading product detail' />");
	
	$( "#div_news" ).load('system/components/news/front/ajax/ajax.newsfront.php',
				function(){
					$('.news-button').button().click(function( event )
						{
							event.preventDefault();

							var	eventInfo = $('#dialog-news');
							eventInfo.data('articleId', $(this).attr('id'));
							eventInfo.dialog('open');
						});
					
					}
						  
						  
				);

	$('#dialog-news').dialog(
	{
		// Configuration
		modal:		true,
		draggable:	false,
		resizable:	false,
		autoOpen:	false,
		width:		900,
		height:		600,
		show:		'blind',
		hide:		'explode',

		// Buttons
		buttons: [
			{ text: 'Close', click: function() { $(this).dialog('close'); } }
		],

		// Retrieve selected event id
		open: function()
		{
			var articleInfo = $(this);
			
			articleInfo.load('system/components/news/front/newsitem.php', { method: 'articleInfo', id: articleInfo.data('articleId') });
		}
	});

	// News article buttons

});

