$(document).ready( function () {
	
	// sidenav corners
	$('.sidenav_corner').corner("round 8px").parent().css('padding', '5px').corner("round 14px");
	$('.qcontact_corner').corner("round 8px");
	// main body headers
	$('.gpheader').corner("12px top");
	$('.gpheader-bold').corner("12px top");
	$('.gpbody').corner("round 12px bottom").parent().css('padding', '5px').corner("round 17px bottom");
	
	// main body rounded containers
	$('.main_corner').corner("round 14px").parent().css('padding', '5px').corner("round 20px");
});

//-- Random header image -->
var theImages = new Array();

theImages[0] = '/images/global/header.headline.1.jpg';
theImages[1] = '/images/global/header.headline.2.jpg';
theImages[2] = '/images/global/header.headline.3.jpg';
theImages[3] = '/images/global/header.headline.4.jpg';

var j = 0
var p = theImages.length;
var preBuffer = new Array();
for (i = 0; i < p; i++){
   preBuffer[i] = new Image();
   preBuffer[i].src = theImages[i];
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
	document.write('<img src="'+theImages[whichImage]+'" width="742" height="181" alt="Myrtle Beach Trips">');
}
//-- Random header image -->

