$(document).ready(execute);

function execute()
{

	if ($('div.content div#images').length)
		$('div.content div#images img.small').mouseover(switchImage);

	if ($('form#form').length)
		$.getScript('/Includes/Javascripts/JQuery.Form.' + $('form#form').attr('title').charAt(0).toUpperCase() + $('form#form').attr('title').substr(1) + '.js', loadForm);

	if ($('p#indexTrailer').length)
		$.getScript('/Includes/Javascripts/SWFObject.js', startTrailer);

}
function loadForm()
{
	startForm();
}
function startTrailer()
{
	var so	= new SWFObject('/Includes/Flash/Player.swf', 'mpl', $('#indexTrailer').css('width'), $('#indexTrailer').css('height'), '9');
		so.addParam('allowscriptaccess',	'always');
		so.addParam('allowfullscreen',		'true');
		so.addParam('flashvars',			'file=/Includes/Flash/MissluciferTrailer.flv&volume=100&controlbar=over&autostart=true');
		so.write('indexTrailer');
}
function switchImage()
{
	$('div.content div#images img#big').attr('src', $(this).attr('src'));
}