/* Rounded Boxes */
DD_roundies.addRule('#box-twitter,#box-blog,#box-shop','0px 0px 8px 8px',true);
DD_roundies.addRule('p.midpage,div.videobox,div.subholder,button.fancybutton,div.modal','8px',true);

/* Auto-Height Boxes */

$(document).ready(function() {
	var totalHeight = $("#lowerboxes").height();
	$(".lowerbox").each(function() {
		if($(this).height() < totalHeight) {
			$(this).height(totalHeight);
		}
	});
	
	// for photo gallery modals	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		showTitle: false,
		theme: 'dark_rounded'
	});

});