$(document).ready(function(){
$('a.colorbox').hover(function(e){
	$(this).find('img').animate({
		width:'200px',
		height:'150px',
		top:'-20px',
		left:'-20px',
		padding:'5px 5px 5px 5px'
	}, 400);
	
}, function(){ 
	$(this).find('img').animate({
		width:'150px',
		height:'100px',
		top:0,
		left:0,
		padding:'2px 2px 2px 2px'
	}, 400);	
	
}).click(function() {
	$(this).colorbox();
});
});
