$(document).ready(function() {
$('#dialog').dialog({
	title: 'Contact Kleszcz Brothers Management for Booking Details',
	modal: true,
	autoOpen: false,
	width: 500,
	buttons: {
		"Cancel": function() { 
			$(this).dialog("close"); 
		} 
	}
});

$('#dialog_link').click(function(){
	openMail();
	return false;
});

/* the about window */
$('#about').dialog({
	title: 'Jamaica and Poland come together - Let the music play!',
	autoOpen: false,
	modal: true,
	width:700, 
	buttons: {
		"Close": function(){
			$(this).dialog("close")
		}
	}
});

$('#about_link').click(function() {
	openAbout();
	return false;	
});

$('#yTube').click(function() {
	openMovie(this.href);
	return false;
});


$("#sound").jmp3();


});

	// open You Tube
	function openMovie(url)
	{
		var height=650;
		var width=800;
		var newLeft = (window.screen.availWidth - width) / 2;
		var newHeight = (window.screen.availHeight - height) /2;
		var objPopup = window.open(url,'uploadWin','height=' + height + ',width=' + width + ',left=' + newLeft +',top=' + newHeight + ',menubar=1,status=1,scrollbars=1,directories=0');
		objPopup.focus();		
	}


	// open the about window
	function openAbout()
	{
	$.post('index.php', {fa: 'c.about'}, function(strAbout) {
	$('#about').html(strAbout);
	$('#about').dialog('open');
	});
	}