$(document).ready(function(){
		
	var randombgs=[
		"http://www.rshulbert.com/images/bg_image1.jpg", 
		"http://www.rshulbert.com/images/bg_image2.jpg", 
		"http://www.rshulbert.com/images/bg_image3.jpg", 
		"http://www.rshulbert.com/images/bg_image4.jpg"
	]

	var bg = Math.floor(Math.random()*randombgs.length);
	$('#background_span').css({ backgroundImage: "url("+randombgs[bg]+")", backgroundColor:"#786f57" });
	
	$(".accordion_list").accordion({autoHeight: false});
	$(".accordion_list div a, .corner_link").fancybox({ 'hideOnContentClick': true });
	$("a.virtualtour").fancybox({'frameWidth': 750, 'frameHeight': 575 });
	
	$("div.earthcraft").each(function(el){		
		$(this).prepend(
			'<img src="http://www.rshulbert.com/images/earthcraft_small.png" class="earthcraft_icon" alt="" />'
		);

	});
	
	$("div.testim_box").each(function(el){		
		$(this).prepend(
			'<img src="http://www.rshulbert.com/images/quote_tl.png" class="quote_tl" alt="" />',
			'<img src="http://www.rshulbert.com/images/quote_br.png" class="quote_br" alt="" />'
		);

	});
	
});