jQuery(function($){
	//$('#menu ul').droppy({speed: 100});
	$(".client .video a[rel]").each(function(i){
		var video_url = $(".client .video a").eq(i).attr('href');
		$(this).overlay({
			expose: '#000',
			onLoad: function(content) {
				jwplayer('vplayer').setup({
					file: video_url,
					height: 444,
					width: 790,
					skin: 'http://www.mod-tv.com/wp-content/themes/modtv/js/jw/skins/glow/glow2.zip',
					events:{
						onReady: function() {
							jwplayer('vplayer').play();
						}
					},
					'modes': [
						{type: 'flash', src: 'http://www.mod-tv.com/wp-content/themes/modtv/js/jw/player.swf'},
						{type: 'html5'},
						{type: 'download'}
					],
					plugins: 'gapro-1',
					'gapro.accountid': 'UA-2472672-1'
				});
				$('#overlay h4').eq(i).show();
			},
			onClose: function() {
				//jwplayer('vplayer').stop();
				$('#overlay .player').html('<div id="vplayer"></div>');
				$('#overlay h4').hide();
			}
		});
	});
	

	

});

