/*
jQuery(document).ready(function() {
	jQuery('div.references a').each(function() {
		var imgbig = jQuery(this).find('img').attr('src').replace(/\.jpg$/i, '-big.jpg');
		this.href = "javascript:void(0);";
		jQuery(this).click(function() {
			jQuery('#refbig img').attr('src', imgbig);
			jQuery('div.references a').removeClass('current');
			jQuery(this).addClass('current');
		});
	});
});
*/
jQuery(document).ready(function() {
	jQuery('.formMessage, .formError').prependTo('#content');
});

function flash(file, width, height, jpg, alt_jpg) {
	document.write('<object type="application/x-shockwave-flash" data="'+file+'" width="'+width+'" height="'+height+'">\n');
	document.write('<param name="movie" value="'+file+'" />\n');
	document.write('<param name="height" value="'+height+'" />\n');
	document.write('<param name="width" value="'+width+'" />\n');
	if(jpg) {
		document.write('<img src="'+jpg+'" alt="'+alt_jpg+'" />\n');
	}
	document.write('</object>\n');
}


