Please help - site is loading very slow on Chrome only

Very strange and intermittent, but my site images load very slowly on Chrome, but only some of the time. Works great on Safari, Firefox and IE. my website is:

www.hbtune.com

Any ideas would be truly appreciated!

I tried here and it was fine on Chrome but rather slow on Safari.

It was rather slow in Chrome here.

You might want to look at the Analytics code that you’ve inserted. As RapidWeaver inserts the opening and closing <script> tags, your analytics code will not work due to the duplicate opening and closing tags.

Currently:

<script type="text/javascript">
			 <script type='text/javascript'>
window.__wtw_lucky_site_id = 43370;

	(function() {
		var wa = document.createElement('script'); wa.type = 'text/javascript'; wa.async = true;
		wa.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://cdn') + '.luckyorange.com/w.js';
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wa, s);
	  })();
	</script> 
		</script>

instead enter this into RapidWeaver:

window.__wtw_lucky_site_id = 43370;

	(function() {
		var wa = document.createElement('script'); wa.type = 'text/javascript'; wa.async = true;
		wa.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://cdn') + '.luckyorange.com/w.js';
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wa, s);
	  })();

—Nik

Thanks for the reply I never even thought to check out Safari performance…