// JavaScript Document


$(function() {
	// lightbox
	//$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	$("a.lightbox").lightBox(); // Select all links with lightbox class
	
		var options = {
			autoOpen: false,
			width: 'auto',
			modal: true
		};
			var num = 1;
			$("div#cms .dialogUI").each(function() {
			var dlg = $('#dialog-player-' + num).dialog(options);
			$('#player-link-' + num).click(function() {
			dlg.dialog("open");
			return false;
		});
		num = num + 1;
	});
					


});



			
							
