$(window).bind("load", function() {
	var preload = ['/images/photos/teens_2.jpg', '/images/photos/kids_1.jpg', '/images/photos/teens_1.jpg', '/images/photos/kids_3.jpg', '/images/photos/kids_2.jpg'];              
	$(document.createElement("img")).bind("load", function() {
		if(preload[0]) this.src = preload.shift();
	}).trigger("load");            
}); 

$(function() {

	$("#homeimg").html("<img src='/images/photos/teens_2.jpg' alt='' /><img src='/images/photos/kids_1.jpg' alt='' /><img src='/images/photos/teens_1.jpg' alt='' /><img src='/images/photos/kids_3.jpg' alt='' /><img src='/images/photos/kids_2.jpg' alt='' />");
	$("#homeimg").innerfade({
		animationtype: 'fade',
		speed: 1000,
		timeout: 4000,
		type: 'sequence',
		containerheight: '370'
	});

	/*-- open all external links in new window --*/
	$('a[@href^=http]').click(function() { window.open(this.href); return false; });

});