// JavaScript Document
	// increase the default animation speed to exaggerate the effect
	$.fx.speeds._default = 1000;
	// most popular item
	$(function() {
		$( "#dialog:ui-dialog" ).dialog( "destroy" );
	
		$( "div#dialogBG500" ).dialog({
			modal: true,
			autoOpen: false,
			height: 544,
			width: 276,
			show: "blind",
			hide: "explode"
		});

		$( "#buyNowMPP" ).click(function() {
			$( "div#dialogBG500" ).dialog( "open" );
			
			return false;
		});
	});
	
	$(function() {
		$( "#dialog:ui-dialog" ).dialog( "destroy" );
	
		$( "div#dialogBookVeticka" ).dialog({
			modal: true,
			autoOpen: false,
			height: 544,
			width: 276,
			show: "blind",
			hide: "explode"
		});

		$( "#buyNowBook" ).click(function() {
			$( "div#dialogBookVeticka" ).dialog( "open" );
			
			return false;
		});
	});
	$(function() {
		$( "#dialog:ui-dialog" ).dialog( "destroy" );
	
		$( "div#dialogBG500" ).dialog({
			modal: true,
			autoOpen: false,
			height: 544,
			width: 276,
			show: "blind",
			hide: "explode"
		});

		$( "#buyNowBG500" ).click(function() {
			$( "div#dialogBG500" ).dialog( "open" );
			
			return false;
		});
	});
	$(function() {
		$( "#dialog:ui-dialog" ).dialog( "destroy" );
	
		$( "div#dialogBG100" ).dialog({
			modal: true,
			autoOpen: false,
			height: 544,
			width: 276,
			show: "blind",
			hide: "explode"
		});

		$( "#buyNowBG100" ).click(function() {
			$( "div#dialogBG100" ).dialog( "open" );
			
			return false;
		});
	});
