Owlspeak_Class = function(){
}


Owlspeak_Class.prototype.init = function(){
	this.events();
}

Owlspeak_Class.prototype.events = function(){
	var self =  this;
	$("#sidebar .getConsult").bind("click", function(){self.openDialog()});
}

Owlspeak_Class.prototype.openDialog = function(){
	var popup = $('<div class="popup"></div>');
	
	popup.append('<div id="booking_widget_container" style="width: 490;"><iframe src="http://www.bookfresh.com/index.html?view=booking_widget&id=a7dc7cb5294fda4b11c74d67db18db01" frameborder="0" name="BookFresh" width="490px" height="590px" id="booking_widget" border="0" style="border: none;" marginwidth="0" scrolling="no"></iframe><div><span style="font-size: 10px; color: #88888b; font-family: Lucida Grande, Lucida,sans-serif;"><a href="https://www.bookfresh.com/index.html?id=a7dc7cb5294fda4b11c74d67db18db01&wi=102&view=button_dispatcher" target="_blank" style="color: #88888b; text-decoration: underline;">appointment software</a> - by&nbsp;BookFresh</span></div></div>');
	
		popup.dialog({
			title: "Booking free initial consultation",
			height: 650,
			width: 515,
			modal: true,
			resizable: false
		});

}

$(document).ready(function(){
	var owlspeak = new Owlspeak_Class();
	owlspeak.init();
});
