
//Initial Photo gallery
Shadowbox.loadSkin("photogallery","/shadowbox/skin");
function openPhotoGallery(e){
	Shadowbox.open(e,{height:490,width:490});
}
$(document).ready(function(){
	Shadowbox.init({
		skipSetup:true
	});
});


function popContactUs(email){
	var items=email.split(":");
	if(items.length>1){
		email=items[1];
	}
	openPhotoGallery($("<a href='"+contact_form_url+"?email="+email+"'></a>").get(0));

}
