// JavaScript Document

// Start once the document is ready.
$(document).ready(function(){
		// Rounds the corners of the element.
		$('.minor_div').wrap('<div class="round"></div>');
		$('.minor_div').corner("round 8px");
		$('.major_div').wrap('<div class="round"></div>');
		$('.major_div').corner("round 8px");
		$('.round').corner("round 10px");
});