(function ($){
	$(function(event) {
		var dialogOpen = function() {
			var w = window.open('./leave-message.html','Login','toolbar=no,status=no,scrollbars=no,location=no,menubar=no,directories=no,width=500,height=400, alwaysRaised=yes');
			w.moveTo(screen.width/2-250, screen.height/2-200);
		};
		
		var detailsOpen = function() {
			var w = window.open('./details.html','Login','toolbar=no,status=yes,scrollbars=no,location=no,menubar=no,directories=no,width=500,height=400, alwaysRaised=yes');
			w.moveTo(screen.width/2-250, screen.height/2-200);
		
		};
		$('#send_message').click(dialogOpen);
		$('#details').click(detailsOpen);
		
		$('div.contacts .contacts-row a.dashed').toggle(
			function() {
				$(this).addClass('active');
				$(this).next('.view').css('display', 'block');
			},
			function() {
				$(this).removeClass('active');
				$(this).next('.view').hide();
			}
		);
	});
})(jQuery);

