var totalImages;var loaded=0;$(document).ready(function(){totalImages=$('img').length+2;preloadImage('http://www.beetlebaileydrx.com/wp-content/themes/beetle/images/bg-top.png');preloadImage('http://www.beetlebaileydrx.com/wp-content/themes/beetle/images/bg-strip.png');$('img').map(function(){preloadImage($(this).attr("src"));});});function startLoading(){}
function preloadImage(url){var image=new Image();image.onload=imageLoaded();image.src=url;}
function imageLoaded(){loaded++;if(totalImages==loaded){init();}}
