(function ($) {
	$(document).ready(function() {
		$('.gallery-item').click(function(){
			var img = $(this).attr('href');
			var title = $(this).attr('title');
			$('#gallery-big .big').fadeOut('fast', function(){
				$('#gallery-big p').fadeOut();
				$('#gallery-big .big').replaceWith('<img src="'+ img +'" class="big" />');
				$('#gallery-big p').replaceWith('<p>'+ title +'</p>');
				$('#gallery-big .big').fadeIn('fast');
				$('#gallery-big p').fadeIn('fast');
			});
			return false;
		});
	});
})(jQuery);;

