function setPageBackground(file) {
	$("DIV#container").css('background-image', 'url(/uploads/page-backgrounds/' + file + ')');
}

function setFlashContent(file, width, height) {
	$("DIV#content").after('<div id="flashContainer"></div>');
	
	if (!width || width == 0 || width == '') width  = 365;
	if (!height || height == 0 || height == '') height = 390;
	
	$('div#flashContainer').flash(
		{ src: '/uploads/page-flash/' + file, width: width, height: height, bgcolor: '#000000' }, 
		{ update: false }
	);
}

function setMinimumHeight(height) {
	$("DIV#content-spacer").css('height', height + 'px');
}

$(document).ready(function(){
	$("span.raquo").html('<img src="/images/arrow-small.gif" align="absmiddle" alt="&raquo;" />');
	
	$('h1#siteTitle').flash(
		{ src: '/uploads/assets/flash/vibe-logo.swf', width: 100, height: 150, bgcolor: '#000000' }, 
		{ update: false }
	);
	$('h1#siteTitle a').hide();
});
