
$(document).ready(function(){
	
	$('#GG_links a:last').css('borderRight', 'none');
	
	$('.GG_developments a, a.GG_financeServices').hover(
	  function() {
		  $(this).find('img').attr('src', $(this).find('img').attr('src').replace(/01/, '02'));
		  $(this).find('span').addClass('GG_blueBoxHover');
		  $(this).find('span').removeClass('GG_blueBox');
	  },
	  function() {
		  $(this).find('img').attr('src', $(this).find('img').attr('src').replace(/02/, '01'));
		  $(this).find('span').removeClass('GG_blueBoxHover');
		  $(this).find('span').addClass('GG_blueBox');
	  }
	);
	
	$('#GG_recentlyAdded a').each(function(item) { 
		 var width = $(this).find('.image').find('img').width();
		 if(width <= 55) width = 55;
		 $(this).find('.image').find('span').width(width);
	});
	
	$("#GG_mainpics img:first").addClass("active");
	$("#GG_mainpics img").everyTime(5000, function(i) {
		var $active = $('#GG_mainpics .active');
		var $next = ($('#GG_mainpics .active').next().length > 0) ? $('#GG_mainpics .active').next() : $('#GG_mainpics img:first'); 
		$active.fadeOut(function() {
			 $active.removeClass('active');
			 $next.fadeIn().addClass('active');
		});
	});
	
	$('.xAF_branches .xAF_office h2').after('<p>Head Office is located in the centre of Magherafelt in modern clean office premises. Visitors are welcome.</p>');
	
});
