$(document).ready(function() {
	$('.kwicks').kwicks({
		max: 500
		,spacing: 10
                                //,onOpenStart: onOpenStart
                                //,onCloseStart: onCloseStart
		//,onOpenComplete: onOpenComplete
		//,onCloseComplete: onCloseComplete
	});

	$('.kwicks li').eq(0).hover(function(){
		var $this = $(this).children('.interior');
		$this.animate({
			width: '85%',
			height: '250px'
		},300,function(){
			$this.children('form').fadeIn();
		});
	},function(){
		var $this = $(this).children('.interior');
		$this.children('form').fadeOut('fast',function(){
			$this.animate({
				width: '166px',
				height: '85px'
			},300);
		});
	});
	
	/*
	 * Sign up form DELETED
	 */

	
	
/**/	
 	

	
	function onOpenComplete(){
		var $this = $(this).children('.interior');
		$this.animate({
			width: '85%',
			height: '250px'
		},300,function(){
			$this.children('form').fadeIn();
		});
	}
	
	function onCloseComplete(){
		var $this = $(this).children('.interior');
		$this.children('form').fadeOut('fast',function(){
			$this.animate({
				width: '166px',
				height: '85px'
			},300);
		});
	}

	function onOpenComplete(){
		var $this = $(this).children('.interior');
		$this.animate({
			width: '85%',
			height: '250px'
		},300,function(){
			$this.children('object').fadeIn();
		});
	}
	
	function onCloseComplete(){
		var $this = $(this).children('.interior');
		$this.children('object').fadeOut('fast',function(){
			$this.animate({
				width: '166px',
				height: '85px'
			},300);
		});
	}
});
