$(function(){	

	$('.box-container').corners("5px top bottom");
	 
	$('.box h4').corners("5px top");
	 
    $("a[title='privacy policy']").colorbox();
	$("a[title='legal']").colorbox();
	$("a[title='contact']").colorbox();

	$("a[title='sitemap']").colorbox();
	$("a[title='ourservicemark']").colorbox();

	 //$(".link").colorbox({width:"700px", height:"80%", iframe:true});


	});

	function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}
	$(document).ready(function() {
    equalHeight($('#left-col,#mid-col,#right-col'));
});

