// JavaScript Document
$(document).ready(function(){
	$('a.shadowbox').each(function(){
		$(this).attr('rel','shadowbox');
	})
	
	$('img.shadowbox').each(function(){
		$(this).parent().attr('rel','shadowbox');
	})
	
	Shadowbox.init();
})
