$().ready(function(){
	$('.imgbox').hover(
	  function () {
		$(this).children('.text').children('h2').children('a').addClass('hover');
	  },
	  function () {
		$(this).children('.text').children('h2').children('a').removeClass('hover');
	  }
	);

	$('#submenu-wrapper li:last').addClass('last');
	
	$('.galleryThumbnail a').click(function() {
		$('.galleryImage img').attr('src', $(this).attr('href'))
		$('.galleryImage img').attr('alt', $(this).attr('title'))
		$('p.galleryImageText').html($(this).attr('title'));
		
		$('.galleryThumbnail').removeClass('galleryThumbnailActive');
		$(this).parent().addClass('galleryThumbnailActive');
		return false;
		
	});
});