(function($){
	$('document').ready(function(){
		$('.media .gallery a').each(function(){
			$(this).data('big_picture', $(this).attr('title'));
			$(this).attr('title', '');
		});
		$('.media .gallery a').live('click', function(e){
			e.preventDefault();
			$('.media .main img').attr('src', $(this).attr('href'));
			$('.media .main a').attr('href', $(this).data('big_picture'));
		});
		
		$('[rel=lightbox]').live('click', function(e){
			e.preventDefault();
			window.open($(this).attr('href'), 'lightbox', 'width=750,height=700');
		});
		
		$('[rel=popup]').live('click', function(e){
			e.preventDefault();
			window.open($(this).attr('href'), '', 'width=850,height=700');
		});
	});
})(jQuery);
