$(function() {

	
	var colorForBorder = $('#nav ul li span a').css('color');
	
	$('#footernav ul li:not(:last-child), #nav ul li:not(:last-child)').css({
		borderRight: '2px solid'
	,	borderColor: colorForBorder
	,	padding: '0 1.2ex 0 1ex'
	});
	
	$('#footernav ul li:last-child, #nav ul li:last-child').css({
		borderRight: 'none'
	,	padding: '0 0 0 1ex'
	});
	
	$('#footernav ul li:first-child, #nav ul li:first-child').css({
		padding: '0 1ex 0 0'
	});
	
	
	if (window.location.pathname.length >= 1) {
		var x = window.location.pathname;
		if (x.contains("trailer") == true) {
			initializeFlash();
		}
	}
	
	function initializeFlash(  ) {
		$('#FlashID').flash(
			{
				src: 'trailer/trailer.swf'
			,	width: 655
			,	height: 442
			}, 
			{	expressInstall: true
			}
		);
	}
});
