$(document).ready(function(){

	$("#splash img.splashire").hover(
		function() {
			$("#splash img.splashire").attr('src','assets/images/splash/ireland-on.png');
		},
		function() {
			$("#splash img.splashire").attr('src','assets/images/splash/ireland.png');
		}
	);

	$("#splash img.splashuk").hover(
		function() {
			$("#splash img.splashuk").attr('src','assets/images/splash/uk-on.png?v2');
		},
		function() {
			$("#splash img.splashuk").attr('src','assets/images/splash/uk.png?v2');
		}
	);

	var images=new Array(
		"assets/images/splash/uk.png?v2",
		"assets/images/splash/uk-on.png?v2",
		"assets/images/splash/ireland.png",
		"assets/images/splash/ireland-on.png",
		"assets/images/splash/international.png"
		);
	
	$.each(images,function(intIndex, objValue) {
		$(".preload").append("<img src='" + objValue + "?20101206' style='height:1px;width:1px' alt='' />");
	});
});
