$(document).ready(function() {

	$("#reportVideo").click(function() {
		$("#notOkForm").toggle("slow");

		return false;
	});
	
	/** CENTERING THE VIDEO NAVIGATION **/
	if($('.videoNav').length > 0)
	{
		var totalWidth = parseInt($('.videoNav').css('width').replace('px', ''));
		
		var infoWidth = parseInt($('div.previous').css('width').replace('px', ''))
						+ parseInt($('div.next').css('width').replace('px', ''))
						+ parseInt($('div.middleBtn').css('width').replace('px', ''));
		
		var margins = Math.floor((totalWidth - infoWidth) / 2);

		$('.middleBtn').css('marginLeft', margins);
	}
	
	
	
});
