$(document).ready(function() {

	$.preload( [ 'Splash_entersite_click_06' ], {
 		base:'images/',
 		ext:'.jpg'
 	});
	$("img.roimg").click(function() { 
		this.src = this.src.replace("_link","_click");	
		this.src = this.src.replace("_hover","_click");	
		myHref = jQuery(this).parent().attr("href");
		var t=setTimeout('gotoPage(myHref)',500);
		return false;
	 }); 

 });

function gotoPage(myURL) {
		window.location = myURL;	
}
