$( document ).ready(function(){
	
	$( 'div#joomlacontent table .imglist img' ).click(function (){
		var name= $( this ).attr('src').replace('thumb/','');
		name = name.replace('Thumb','Photo');
		name = name.replace('Rollover','');
		$( this ).closest( 'table' ).find('.imgshow img').attr('src',name);
	});

	initFrasersProperty();



});

function initFrasersProperty()
{
	$( 'div#joomlacontent h1' ).css('text-transform','uppercase').css('color','#666').css('font','bold 1.7em arial');
	$( 'div#joomlacontent h2' ).css('text-transform','uppercase').css('color','red').css('font','bold 1.3em arial');
}