$(document).ready(function(){  
	$(".select_rel").each(function(){
		$(this).val($(this).attr("rel"));
	});
});

$(document).ready(function() {

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
});

