var video = '';

$(document).ready(function() {
	
	$('a[rel^="prettyPhoto"]').prettyPhoto({
		theme:		'light_square'
	});

	/*
	$('a[rel^="prettyPhoto"]').prettyPhoto({
		theme:	'light_square'
	});
	*/
	
	$('.share-icon').hover(function() {
		$(this).stop().animate({
			opacity:'1'
		},'fast');
	}, function() {
		$(this).stop().animate({
			opacity:'0.4'
		},'fast');
	});
});

