(function ($,window,document,undefined) {
	$(document).ready(function(){
		inverseRoundedCorners($);
		loadPhotoGallery($);
	})
})(jQuery,this,document);

function inverseRoundedCorners($) {
	var poss = ['tl','tr','br','bl'];
	var dotts = "";
	for(var i in poss) {
		dotts += "<div class='dott dott-"+poss[i]+"'>&middot;</div>";
	}
	
	$('.inverse-rounded').append(dotts);
	
}

function loadPhotoGallery($) {
	$("#link-19").click(function() {
		$.fancybox(gallery_images);
	});
}
