jQuery.noConflict();
jQuery(document).ready(function($) {
 
	$("#play-video").click(
	  function () {
		$("#absolute-video").stop(true, true).show(600);
		$("#fade").show();
		$("#fade").stop(true, true).fadeTo(0, 0);
		$("#fade").css("background-color", "#000");
		$("#fade").stop(true, true).fadeTo(600, 0.75);
		
		
	  }
	);
	
	$("#close-video").click(
	  function () {
		$("#absolute-video").stop(true, true).hide(600);
		$("#fade").stop(true, true).fadeOut(600);
		$f().stop();
	  }
	);
	
/*	$("#slider").easySlider({
			prevText: 'Previous',
			nextText: 'Next',		
			firstShow: false,
			lastShow: false,
			vertical: true, 
			continuous: true,
					
		});*/
	
});