// Compiled by TK Chung 07.10.2007
// JavaScript Document

window.addEvent('domready', function(){
	/* Resizable */
	$('resizable1').makeResizable();
	 
	/* Resizable with Grid */
	$('resizable2').makeResizable({
		grid: 50
	});
	 
	/* Resizable with Limits */
	$('resizable3').makeResizable({
		limit: {x: [400, 800], y: [40, 200]}
	});
	 
	/* Resizable with Vertical Limit */
	$('resizable4').makeResizable({
		modifiers: {x: false, y: 'height'},
		limit: {y: [50, 150]}
	});
	 
	/* Resizable with Horizontal Limit */
	$('resizable5').makeResizable({
		modifiers: {x: 'width', y: false},
		limit: {x: [50, 800]}
	});
}); 