$(document).ready(function() {
	adjustLayout();
	insertFlash();
});

function adjustLayout()
{
	var bodyHeight = $('#Body').height();
	var sbHeight = $('#SideBar').height();
	
	if (bodyHeight > sbHeight)
	{
		var diff = sbHeight - $('#frmContact fieldset').height();
		var newHeight = bodyHeight - diff;
		$('#frmContact fieldset').height(newHeight);
		
	}
	else if (sbHeight > bodyHeight)
	{
		var diff = bodyHeight - $('#ContentNews').height();
		var newHeight = sbHeight - diff;
		$('#ContentNews').height(newHeight);
	}
	
}

function insertFlash()
{
	$('#DvdLinkWrapper').flash({
		src: '/assets/flash/dvd.swf',
		width: 200,
		height: 180
	});
	
	$('#VideoLinkWrapper').flash({
		src: '/assets/flash/trial.swf',
		width: 200,
		height: 180
	});
	
	$('#VideoLinkWrapper a').remove();
	$('#DvdLinkWrapper a').remove();
}

