$(window).load(function() {
    $('#slider').nivoSlider({
	effect:'sliceDown', // Specify sets like: 'fold,fade,sliceDown'
       
        animSpeed:500, // Slide transition speed
        pauseTime:8000, // How long each slide will show
		controlNav:false,
		directionNav:true, // Next & Prev navigation
		controlNavThumbs:true,
		
		
				
      
    });
});

function showVid(container,video) {
	
	vidPath = escape(video);
	jwplayer(container).setup({
		flashplayer: "video/player.swf",
		autostart: true,
		plugins: {	sharing: { link: false }
	},
	
	file: vidPath,
	height: 230,
	width: 300
	});
}
	


