$(document).ready(function(){
	/*
		Images hover
	*/
	$('#images-container a').hover(function(){
		$(this).animate({top:-13},100).animate({top:-8},100).animate({top:-10},100);
	},function(){
		$(this).animate({top:3},100).animate({top:-2},100).animate({top:0},100);
	});
	/*
		Colorbox
	*/
	$('#images-container a').colorbox();
});

