$(document).ready(function()	{
	// add the last class
	$('#extra-latest .item:last').addClass('last-y');
	$('#extra-blog .item:last').addClass('last-y');
	
	// add the end-post image
	$('#page-article .post-body p:last').append(' <img src="http://css3.gr/themes/site_themes/css3/fin.gif" alt="fin" width="20" height="6" />');
	
	// scroll to form
	$('#comments h3 span a').click(function(event)	{
		event.preventDefault();
		$.scrollTo('#comment h3', 1000);
		
		if($('#field-name').length)	{
			$('#field-name').focus();
		}
		else	{
			$('#field-message').focus();
		}
			
	});
	
	// lightbox
	if($('a.lightbox').length)
	{
		$('a.lightbox').lightBox({
			imageLoading: '/images/lightbox-ico-loading.gif',
			imageBtnClose: '/images/lightbox-btn-close.gif',
			imageBtnPrev: '/images/lightbox-btn-prev.gif',
			imageBtnNext: '/images/lightbox-btn-next.gif',
			txtImage: 'Εικόνα',
			txtOf: 'από'
		}); 
	}
});
