// JavaScript Document


$(document).ready(function(){
	
	$(".boxi").draggable();
	
	$(".boxi").hover(function(){
		
		$(this).animate({
			
			height: '+=50',
			width: '+=50',
			left: '-=25',
			top: '-=25',
			opacity: 1
			
			},300);
		
		},function(){
			
			$(this).animate({
				
			height: '-=50',
			width: '-=50',
			left: '+=25',
			top: '+=25',
			opacity: 0.25
			
			},300);
			
			});
			
	
				
});
