$(document).ready(function(){
	// Header buttons
	$('.ball_header img.animated').hover(function(){
		$(this).stop().animate({ 
			'top': '105px'
		}, 150 );
	},
	function(){
		$(this).stop().animate({ 
			'top': '110px'
		}, 150 );
	});
	//imgPreview
	$('.user_gallery .gallery-icon a').imgPreview({
		distanceFromCursor: {
			left: 20,
			top: -75
		},
		imgCSS: {
			'border': '1px solid #e5e5e5',
			'height': '350px'
		}
	});
	// Size gallery container
	var gallerywidth = 0;
	$(".user_gallery dl").each(function(){
		gallerywidth = gallerywidth + 155;			   
	 });
	$(".user_gallery .gallery").css("width", gallerywidth);
});