jQuery(function( $ ){			
	$.preload( '#menu img', {
	    find:'.jpg',
	    replace:'-selected.jpg'
	});

	//add animation
	$('#menu img').hover(function(){
		this.src = this.src.replace('.jpg','-selected.jpg');	
	},function(){
		this.src = this.src.replace('-selected','');
	});

	$.preload( '#latestnews img', {
	    find:'.png',
	    replace:'-selected.png'
	});

	//add animation
	$('#latestnews img.h').hover(function(){
		this.src = this.src.replace('.png','-selected.png');	
	},function(){
		this.src = this.src.replace('-selected','');
	});
	
	//$('#latestnews').tabs({ fx: { height: 'toggle', opacity: 'toggle', duration:'slow' } });

});





