/* js/home.js for Appspin site
   homepage functionality */

$j(document).ready(function(){
	
	// make whole promo clickable
	$j('ul.promos li').bind('click', function() {
			location.href = $j('p.call-to-action a', $j(this)).attr('href');
		});
	
	// preload background images (otherwise they load when the slide is shown, not at pageload)
	$j('ul.slideshow li').each(function() {
			(new Image()).src = $j(this).css('background-image').replace(/^url\(/, '').replace(/\)$/, '');
		});
});

