(function ($) {
// VERTICALLY ALIGN FUNCTION
$.fn.vAlign = function() {
	return this.each(function(i){
	    var ah = $(this).height();
	    var ph = $(this).parent().height();
	    var mh = Math.ceil((ph-ah) / 2);
	    $(this).css('padding-top', mh);
	});
};
})(jQuery);

$(document).ready(function() {
    colorArray = new Array('#489BCF', '#2C7D93', '#9F2F40', '#229A6C', '#E04527', '#AA3498');
    $('.portfolio li a span').vAlign();
	$('.portfolio li a').hover(function(){
        var color = colorArray [ Math.floor ( Math.random() * colorArray.length ) ]; 
		$(this).stop().animate({'background-color':color, 'color':'#eee'}, 300);
	},function(){
		$(this).stop().animate({'background-color':'#eee', 'color':'#666'}, 300);
	});
});

