/**
 * @author adam
 */

$(document).ready(function() {
	
	$("#video1").flash("flash/movie_holder_final.swf", {
		width: 420,
		height: 390, 
		flashvars: {theMovie : ROOT+"flash/"+MOVIE},
		paremeters: {"allowFullScreen" : "true"}
	});

	var menuItem = $('#menu ul li');
	var marker = $('#marker');
	
	$('#menu ul li#'+PAGE).css({'backgroundColor' : '#00A651', 'border' : 'solid 1px #333', 'border-bottom' : 'none'});
	
	menuItem.hover(
		function() {
			if(PAGE !== $(this).attr('id')) {
				$(this).css({'backgroundColor' : '#00A651', 'border' : 'solid 1px #333', 'border-bottom' : 'none'});
			}
		},
		function() {
			if(PAGE !== $(this).attr('id')) {
				$(this).css({'backgroundColor' : '#fff', 'border' : 'solid 1px #ccc', 'border-bottom' : 'none'});
			}
		}
	);
	
});
