<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>BlackFade.com &#187; Mootools</title>
	<atom:link href="http://www.blackfade.com/tag/mootools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blackfade.com</link>
	<description>Rob Taylor - Web Developer, UK</description>
	<lastBuildDate>Thu, 09 Sep 2010 08:23:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Ajax Content for MooTools v1.2 (Facebook Style)</title>
		<link>http://www.blackfade.com/2009/10/22/ajax-content-for-mootools-v1-2-facebook-style/</link>
		<comments>http://www.blackfade.com/2009/10/22/ajax-content-for-mootools-v1-2-facebook-style/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 08:48:01 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[loader]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://www.blackfade.com/?p=125</guid>
		<description><![CDATA[Welcome to my second attempt at writing up a mootools class. This one&#8217;s a little more advanced this time. It attaches an Ajax handler to all links on a page which conform to the selector you give it. For example, you can tell it to attach to all standard links (&#60;A HREF=&#8217;/here/&#8217;&#62;Hello&#60;/A&#62;), or links with [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to my second attempt at writing up a mootools class.  This one&#8217;s a little more advanced this time.</p>
<p>It attaches an Ajax handler to all links on a page which conform to the selector you give it.  For example, you can tell it to attach to all standard links (&lt;A HREF=&#8217;/here/&#8217;&gt;Hello&lt;/A&gt;), or links with a specific class as i&#8217;ve done with the code below (&lt;A HREF=&#8217;/here/&#8217; CLASS=&#8217;ajax&#8217;&gt;Hello&lt;/A&gt;).</p>
<p>I hope someone finds this useful.  As ever this was created after I kept saying that I could write something a hell of a lot better than anything else I was finding.  This might be a bold statement, but I was having trouble finding anything that would do the job, and simply.</p>
<p><span id="more-125"></span><br />
(Demo to come, I&#8217;m just posting the code up right now.)</p>
<pre class='prettyprint lang-js'>/*
 * ContentHandler
 *
 * Content handler that attaches to links and loads content through AJAX
 *
 * @author Rob Taylor
 * @created 28/09/09
 * @modified 29/09/09
 * @version 1.3.5.10
 */

	var ContentHandler = new Class({
		Implements: [Options, Events, Log],

		options : {
			// Array of container elements to load via AJAX
			container		: $('content'),

			// Loading graphic and text to display while working
			loadingImage		: '/images/ajax-loader.gif',
			loadingMessage		: 'Loading Content...',

			// How much Opacity to set on 'Container' while loading new page.
			loadingTransparency	: 0,

			// Type of link to load via AJAX. Defaults to &lt;a&gt; tags
			linkIdentifier		: 'a',

			// TRUE to enable console logging. FALSE by default
			debugMode		: false
		},

		currentURL : '',
		isNavigating : false,

		/*
		 * initialize
		 *
		 * Default constructor. Sets configuration options, attaches load event links and triggers initial load
		 *
		 * @param mixed		options		Array of config options.  Supported elements:
		 *					container		-	Container element to load Ajax into
		 *					loadingImage		-	URL of image to display while working
		 *					loadingMessage		-	Message to display while working
		 *					loadingTransparency	-	Transparency level of 'container' when request is made.  Must be between 0 and 1. Defaults to 0
		 *					linkIdentifier		-	HTML tagname to attach onclick loader to. Defaults to &lt;a&gt;
		 *					debugMode		-	TRUE to enable console logging. FALSE by default
		 */
		initialize : function( options ) {

			// Set configuration options
			this.setOptions(options);

			this.debug('Starting :: ContentHandler');

			// Loop through link elements attaching loader
			$$(this.options.linkIdentifier).each( function( element ){
				this.attachHandler( element );
			}.bind(this));

			// Do initial content load if location is specified
			if( window.location.hash &#038;&#038; window.location.hash.length > 1 )
			{
				// Get initial page
				var url = window.location.hash.substr( 1, window.location.hash.length );

				this.getContent( url, true );
			}

			// Attach check to re-load content if URL changes or previous attempt fails
			this.updateContent.periodical( 200, this );

		},

		/*
		 * createLoader
		 *
		 * Populates and displays
		 */
		createLoader : function(){
			this.debug('Creating :: Loader Image');

			// Container padding
			var padding		= 40;

			// Create image element
			var content		= $( this.options.container );
			var loaderImage		= new Element( 'img', {
				src	: this.options.loadingImage,
				alt	: 'Loading',
				title	: 'Loading'
			});

			// Create test element
			var loaderMessage	= new Element( 'div' ).set('text',this.options.loadingMessage);
			loader			= new Element( 'div' );

			// Style elements
			content.setStyle( 'position', 'relative' );
			loader.setStyles({
				margin		: 'auto',
				textAlign	: 'center',
				position	: 'absolute',
				opacity		: 0
			});

			// Autoresize container onload to fit image
			loaderImage.addEvent('load', function(){
				loader.setStyles({
					height		: ( loaderImage.getSize().y + padding ),
					width		: ( loaderImage.getSize().x + padding ),
					top		: 20 + content.getPosition().y,
					left		: ( ( ( content.getSize().x / 2 ) - ( loaderImage.getSize().x / 2 ) ) - padding ) + content.getPosition().x
				});
			});
			// Add image and message to container
			loader.adopt( loaderImage,loaderMessage );

			// Attach loader to content area and fade in
			$(document.body).adopt( loader );
			loader.fade('in');

		},

		destroyLoader : function(){
			if( loader )
				loader.destroy();
		},

		getContent : function( url, freshStart ){
			this.debug('Collecting :: Page Content');

			var content = $( this.options.container );

			if( this.isNavigating &#038;&#038; request_content )
				request_content.cancel();

			request_content = new Request.HTML({
				url		: url,
				method		: 'get',
				link		: 'cancel',
				update		: content,
				onRequest	: function(){
					this.debug('Collecting :: Page Content -> Request Made');

					// Set active request flag (prevents periodical spawning simultaneous requests)
					this.isNavigating = true;

					// Store current content in case of rollback (e.g. if request fails)
					content.store( 'content', content.get('html') );

					if( freshStart ){
						// Flush content
						content.empty();
					}
					else{
						content.get('tween', {
							property: 'opacity',
							duration: 'normal'
						}).start( this.options.loadingTransparency );
					}

					// Display loaders
					this.createLoader();

				}.bind(this),
				onComplete	: function(){
					this.debug('Collecting :: Page Content -> Complete');

					// Reset active request flag
					this.isNavigating = false;

					this.destroyLoader();

					if( !freshStart ){
						content.get('tween', {
							property: 'opacity',
							duration: 'short'
						}).start(1);
					}

				}.bind(this),
				onSuccess	: function(){
					this.debug('Collecting :: Page Content -> Success');

					// Track new content URL
					this.currentURL = url;

					// Flush stored content
					content.store( 'content', '' );

					if( !freshStart ){
						window.location.hash = url;
					}

					content.getElements( this.options.linkIdentifier ).each( function( inner_element ){
						this.attachHandler( inner_element );
					}.bind(this));

					this.debug('Current URL: '+this.currentURL);

				}.bind(this),
				onFailure	: function(){
					this.debug('Collecting :: Page Content -> Fail');

					// Retrieve stored content
					content.retrieve( 'content' );

				}
			}).send();

			return false;

		},

		attachHandler : function( element ){
			if( $(element) ){
				if( this.checkLink( $(element).get('href') ) )
				{
					url = $(element).get('href');
					//this.debug('Adding Handler : "'+url+'"');
					$(element).addEvent('click', this.getContent.bind(this,url) );
				}
			}
			else{
				this.debug('No Valid Element.');
			}
		},

		updateContent : function(){

			var url = window.location.hash.substr( 1, window.location.hash.length );
			if( this.currentURL != url &#038;&#038; !this.isNavigating &#038;&#038; this.checkLink( url ) ){
				this.debug('Updating :: Page Content: "'+url+'"');
				this.getContent( url );
			}

		},

		checkLink : function( url ){

			if( url.test('^http:|^https:' ) ) // We're assuming here, that external links, do not want to be loaded inside the container.
				return false;

			return true;
		},

		debug : function( message ){

			if( !this.options.debugMode )
				return;

			this.log( '[Content Handler] ' + message );

		}

	});

	document.addEvent('domready', function(){
		content = new ContentHandler({
			linkIdentifier : 'a.ajax' // this will attach to any link with a class of 'ajax'.
			//linkIdentifier : 'a' // This will attach to any link.
		});
	});</pre>
<h3>Available Options</h3>
<ul>
<li><strong>container</strong> : Container element to load Ajax into</li>
<li><strong>loadingImage</strong> : URL of image to display while working</li>
<li><strong>loadingMessage</strong> : Message to display while working</li>
<li><strong>loadingTransparency</strong> : Transparency level of &#8216;container&#8217; when request is made.  Must be between 0 and 1. Defaults to 0</li>
<li><strong>linkIdentifier</strong> : HTML tagname to attach onclick loader to. Defaults to &lt;a&gt;</li>
<li><strong>debugMode</strong> : TRUE to enable console logging. FALSE by default</li>
</ul>
<div class='wp_likes' id='wp_likes_post-125'><a class='like' href="javascript:wp_likes.like(125);" title='' ><img src="http://www.blackfade.com/wp-content/plugins/wp-likes/images/like.png" alt='' border='0'/>Like</a><span class='text'></span>
<div class='unlike'><a href="javascript:wp_likes.unlike(125);">Unlike</a></div>
</div>
<div class="shr-publisher-125"></div>]]></content:encoded>
			<wfw:commentRss>http://www.blackfade.com/2009/10/22/ajax-content-for-mootools-v1-2-facebook-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moodal Window for MooTools 1.2.3.1</title>
		<link>http://www.blackfade.com/2009/09/24/moodal-window-for-mootools-1-2-3-1/</link>
		<comments>http://www.blackfade.com/2009/09/24/moodal-window-for-mootools-1-2-3-1/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 11:58:12 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Modal]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Window]]></category>

		<guid isPermaLink="false">http://www.blackfade.com/?p=77</guid>
		<description><![CDATA[This is my first attempt at publishing one of my scripts, and my first real attempt at writing a MooTools class. I hope you enjoy it, and check out the demo: Demo &#8211; I plan on replacing this with an inline demo some time very soon (See below). Launch AJAX Demo &#8211; Not working right [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blackfade.com/wp-content/uploads/2009/09/MoodalWindow.png"><img src="http://www.blackfade.com/wp-content/uploads/2009/09/MoodalWindow-150x150.png" alt="MoodalWindow" title="MoodalWindow" width="150" height="150" class="alignleft size-thumbnail wp-image-101" /></a>This is my first attempt at publishing one of my scripts, and my first real attempt at writing a MooTools class.</p>
<p>I hope you enjoy it, and check out the demo:<br />
<span id="more-77"></span><br />
<a href="/demo/MoodalWindow/" target="_blank">Demo</a> &#8211; I plan on replacing this with an inline demo some time very soon (See below).<br />
<a href='/demo/MoodalWindow/ajax-demo.html' title='AJAX Demo' class='ajax'>Launch AJAX Demo</a> &#8211; Not working right now, trying to find the out what&#8217;s not connecting. <img src='http://www.blackfade.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3 style='clear: both;'>Here are the image files you will need:</h3>
<p>I suggest you find something better, these were just temp images for me.</p>
<pre>Close:<img class="alignnone size-full wp-image-91" title="close" src="http://www.blackfade.com/wp-content/uploads/2009/09/close.png" alt="close" width="16" height="16" />
Resize: <img class="size-full wp-image-92 alignnone" title="resize" src="http://www.blackfade.com/wp-content/uploads/2009/09/resize.png" alt="resize" width="17" height="17" />
Loading: <a href="http://www.blackfade.com/wp-content/uploads/2009/09/ajax-loader.gif"><img class="alignnone size-full wp-image-93" title="ajax-loader" src="http://www.blackfade.com/wp-content/uploads/2009/09/ajax-loader.gif" alt="ajax-loader" width="66" height="66" /></a>
</pre>
<h3>First the Javascript</h3>
<p>I&#8217;m assuming you&#8217;ve got MooTools Code and More installed.</p>
<pre class='prettyprint lang-js'>
var MoodalWindow = new Class({

	Implements: [Options, Events],

	options : {
		container		: window,
		height			: 700,
		width			: 600,
		overlayColor		: '#000000',
		overlayTransparency	: 0.7,
		overlayClose		: true,
		move			: true,
		resize			: true,
		url			: '',
		title			: 'Modal Window'
	},

	/*
	Constructor: initialize
		Constructor

		Add event on formular and perform some stuff, you now, like settings, ...
	*/
	initialize : function( element, options ) {
		if( $(element) )
		{
			if( $(element).get('title') )
				this.options.title	= $(element).get('title');
			else if( $(element).get('text') )
				this.options.title	= $(element).get('text');

			if( $(element).get('href') )
				this.options.url	= $(element).get('href');

			this.setOptions(options);

			$(element).addEvent('click', this.createPopup.bind(this) );
			return false;
		}
	},

	createPopup : function(){
		this.killStraglers();

		this.createOverlay();
		this.createWindow();
		if( this.options.title ){
			this.createTitle();
			this.createCloser();
		}
		this.createContent();
		if( this.options.resize )
			this.createResizer();
		return false;
	},

	createOverlay : function(){
		var overlayColor		= this.options.overlayColor;
		var overlayTransparency		= this.options.overlayTransparency;
		modalOverlay = new Element( 'div', { 'id':'modalOverlay' } ).setStyles({
			backgroundColor	: this.options.overlayColor,
			position	: 'absolute',
			left		: 0,
			top		: 0,
			height		: window.getScrollSize().y,
			width		: window.getScrollSize().x,
			zIndex		: 99
		});

		if( this.options.overlayClose )
			modalOverlay.addEvent('click', this.closePopup.bind(this) );

		modalOverlay.fade('hide');

		$(document.body).grab( modalOverlay );
		modalOverlay.fade( this.options.overlayTransparency );

		window.addEvent('resize',function(){
			modalOverlay.setStyles({
				height	: window.getScrollSize().y,
				width	: window.getScrollSize().x
			});

		});

	},

	createWindow : function(){

		var modalWindowTop = ( ( this.options.container.getSize().y / 2 ) - ( this.options.height / 2 ) + window.pageYOffset );
		if( modalWindowTop &amp;amp;lt; 0 )
			var modalWindowTop = 0;

		var modalWindowLeft = ( ( this.options.container.getSize().x / 2 ) - ( this.options.width / 2 ) + window.pageXOffset );
		if( modalWindowLeft &amp;amp;lt; 0 )
			var modalWindowLeft = 0;

		modalWindow = new Element( 'div', { 'id':'modalWindow' } ).setStyles({
			position	: 'absolute',
			top		: modalWindowTop,
			left		: modalWindowLeft,
			height		: this.options.height,
			width		: this.options.width,
			zIndex		: 100
		});

		modalWindow.fade('hide');
		$(document.body).grab( modalWindow );
		modalWindow.fade( 'in' );

		if( !this.options.move )
		{
			var reposition = function(){

				var modalWindowTop = ( ( this.options.container.getSize().y / 2 ) - ( this.options.height / 2 ) + window.pageYOffset );
				if( modalWindowTop &amp;amp;lt; 0 )
					var modalWindowTop = 0;
				if( modalWindowTop &amp;amp;gt; this.options.container.getSize().y )
					var modalWindowTop = this.options.container.getSize().y;

				var modalWindowLeft = ( ( this.options.container.getSize().x / 2 ) - ( this.options.width / 2 ) + window.pageXOffset );
				if( modalWindowLeft &amp;amp;lt; 0 )
					var modalWindowLeft = 0;
				if( modalWindowLeft &amp;amp;gt; this.options.container.getSize().x )
					var modalWindowLeft = this.options.container.getSize().x;

				modalWindow.setStyles({
					top	: modalWindowTop
					//left	: modalWindowLeft
				});

			}

			window.addEvents({
				'resize' : reposition.bind(this),
				'scroll' : reposition.bind(this)
			});
		}

	},

	createTitle : function(){

		modalTitle = new Element( 'div', { 'id':'modalTitle' } ).setStyles({
			position	: 'absolute',
			top		: 0,
			left		: 0,
			width		: '100%'
		});
		modalTitle.set( 'text', this.options.title );
		modalWindow.grab( modalTitle );

		if( this.options.move )
		{
			modalWindow.makeDraggable({
				handle : modalTitle,
				limit: {
					x : [ 0, ( this.options.container.getScrollSize().x ) ],
					y : [ 0, ( this.options.container.getScrollSize().y ) ]
				}
			});
			modalTitle.setStyles({
				cursor	: 'move'
			});
		};

	},

	createContent : function(){

		modalContent = new Element( 'div', { 'id':'modalContent' } ).setStyles({
			position	: 'absolute',
			top		: ( this.options.title ? modalTitle.getStyle('height') : 0 ),
			overflow	: 'auto',
			left		: 0,
			height		: ( this.options.height - ( this.options.title ? modalTitle.getStyle('height').toInt() : 0 ) )+'px',
			width		: '100%'
		});
		modalContent.set( 'html', '&amp;amp;lt;br /&amp;amp;gt;&amp;amp;lt;br /&amp;amp;gt;&amp;amp;lt;center&amp;amp;gt;&amp;amp;lt;img alt=&amp;amp;quot;Loading..&amp;amp;quot; src=&amp;amp;quot;images/ajax-loader.gif&amp;amp;quot;/&amp;amp;gt;&amp;amp;lt;br /&amp;amp;gt;Loading Content...&amp;amp;lt;/center&amp;amp;gt;' );

		modalWindow.grab( modalContent );

		modalContent.load( this.options.url );

	},

	createCloser : function(){

		modalCloser = new Element( 'div', { 'id':'modalClose' } ).setStyles({
			cursor		: 'pointer',
			position	: 'absolute',
			top		: 0,
			right		: 0
		});
		modalTitle.grab( modalCloser );
		modalCloser.addEvent('click', this.closePopup.bind(this) );

	},

	createResizer : function(){

		modalResizer = new Element( 'div', { 'id':'modalResize' } ).setStyles({
			cursor		: 'pointer',
			position	: 'absolute',
			bottom		: 0,
			right		: 0
		});
		modalWindow.grab( modalResizer );

		modalWindow.makeResizable({
			handle : modalResizer,
			onDrag : function(){
				modalContent.setStyles({
					height : ( modalWindow.clientHeight - ( this.options.title ? modalTitle.getStyle('height').toInt() : 0 ) )+'px'
				});
			}.bind(this),
			limit: {
				x : [ 100, this.options.container.getSize().x ],
				y : [ 75, this.options.container.getSize().y ]
			}
		})
		modalResizer.setStyles({
			cursor	: 'se-resize'
		});

	},

	resizePopup : function( newHeight, shift ){

		modalContent.set('tween', {
			duration: 750
		}).tween('height', ( newHeight - ( this.options.title ? modalTitle.getStyle('height').toInt() : 0 ) ) );

		var moveHeight = function(){
			modalWindow.set('tween', {
				duration: 750
			}).tween('height', newHeight );
		}.delay(0);

		if( shift ) {
			var moveTop = function(){
				modalWindow.set('tween', {
					duration: 750
				}).tween('top', ( ( window.getSize().y / 2 ) - ( newHeight / 2 ) + window.pageYOffset ) );
			}.delay(750);
		}

		return false;
	},

	killStraglers : function(){

		if( $('modalOverlay') )
			$('modalOverlay').destroy();
		if( $('modalWindow') )
			$('modalWindow').destroy();

	},

	closePopup : function(){

		modalOverlay.fade('out');
		modalWindow.fade('out');
		var killEm = function(){
			if( $('modalOverlay') )
				$('modalOverlay').destroy();
			if( $('modalWindow') )
				$('modalWindow').destroy();
		}.delay(750);

		return false;

	}

});</pre>
<h3>Second, the CSS.</h3>
<p>I&#8217;m using the CSS3 rounded borders here, but it will roll back to normal borders if the viewer is using IE.</p>
<pre class='prettyprint lang-css'>
#modalWindow{
	background-color		: #FFFFFF;
	border				: 10px solid #222;
	border-radius			: 10px;
	-moz-border-radius		: 10px;
	-webkit-border-radius		: 10px;
}

#modalTitle{
	font-size			: 14px;
	font-weight			: bold;
	color				: #FFF;
	height				: 30px;
	background-color		: #222;
}

#modalContent{
	background-color		: #FFFFFF;
}

#modalClose{
	background-image		: url(images/close.png);
	height				: 16px;
	width				: 16px;
	margin				: 5px;
}

#modalResize{
	background-image		: url(images/resize.png);
	height				: 17px;
	width				: 17px;
}
</pre>
<h3>Lastly, the calling methods.</h3>
<p>I&#8217;ve added both methods here, first attaching to a single element.</p>
<pre class='prettyprint lang-js'>
Moodal = new MoodalWindow( $( 'moobox-link' ) );
</pre>
<p>Second, attaching to any link with a class of &#8220;moobox&#8221;.</p>
<pre class='prettyprint lang-js'>
$$('a.moobox').each(function(element){
	Moodal = new MoodalWindow( element );
});</pre>
<h3>Available options:</h3>
<ul>
<li><strong>height</strong> : Pixel height of the Modal Window. (EG: 250)</li>
<li><strong>width</strong> : Pixel width of the Modal Window. (EG: 350)</li>
<li><strong>overlayColor</strong> : Hex colour of the overlay. (EG: &#8216;#AAAAAA&#8217;/'#AAA&#8217;)</li>
<li><strong>overlayTransparency</strong> : Transparency level of the overlay, from 0 to 1. (EG: 0.4)</li>
<li><strong>overlayClose</strong> : Boolean value, if you want the modal window to close when you click the overlay background. (EG: true/false)</li>
<li><strong>move</strong> : Boolean value, if you want the user to be able to move the Modal window around, using the Title Bar as a handle. (EG: true/false)</li>
<li><strong>resize</strong> : Boolean value, if you want the user to be able to resize the Modal Window, from the bottom right corner.  If this is set to true, the window will not auto position itself when the window scrolls, or resizes. (EG: true/false)</li>
<li><strong>url</strong> : URL to be opened in the modal window.  If this is not set, the class will use the HREF from the link. (EG: &#8216;users/rob/index.php&#8217;)</li>
<li><strong>title</strong> : Title bar text, if this is set to false, the title bar will not appear, disabling the close button, and the move/drag feature.  If this is not set, the code will attempt to get a &#8220;TITLE&#8221; variable from the link, or failing that, the text from inside the link.</li>
</ul>
<h3>Options Example:</h3>
<pre class='prettyprint lang-js'>
Moodal = new MoodalWindow( $('link-id'), {
	height			: 700,
	width			: 600,
	overlayColor		: '#000000',
	overlayTransparency	: 0.7,
	overlayClose		: true,
	move			: true,
	resize			: true,
	url			: '/test/hello-world.html',
	title			: 'Hello World!'
});</pre>
<div class="shr-publisher-77"></div>]]></content:encoded>
			<wfw:commentRss>http://www.blackfade.com/2009/09/24/moodal-window-for-mootools-1-2-3-1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
