$(document).ready(function(){

	// less mess in the markup
	$("div.boxGreen").after('<div class="boxGreenBottom"></div>'); // adds bottom rounded div after green box
	$("div.boxGrey").before('<div class="boxGreyTop"></div>'); // adds top rounded div after grey box
	$("div.boxGrey").after('<div class="boxGreyBottom"></div>'); // adds bottom rounded div after grey box
	
	$("div#boxes").before('<div id="boxesTop"></div>'); // adds top rounded div after div
	$("div#boxes").after('<div id="boxesBottom"></div>'); // adds bottom rounded div after div

	// centering button in the sidebar
	$('.btnCenter').each(function() {
		parentWidth = $(this).parent().width();						
		btnWidth = $(this).width();
		btnWidth +=18;
		totalWidth = (parentWidth - btnWidth) / 2;
		$(this).css('margin-left',totalWidth);					
	});
	
	// fancybox
	$("a.fancy").fancybox();
		
});  









