// turns off sharing links when editing
function editCurrent(url) {
window.location.href = url;
}
function deleteBlogEntry(blogid, blogentid, msgid) {
var link = '/aspx/blob2/admin/blogs/blogsdeleteBlogEntry.aspx?blogid=' + blogid + '&blogentid=' + blogentid + '&msgid=' + msgid;
location.href = link;
return;
}
function deleteBlog1Entry(blogid, blog1blogid, blogentid, msgid) {
var link = '/aspx/blob2/admin/blogs/blogsdeleteBlogEntry.aspx?provider=blog1&blogid=' + blogid + '&blog1blogid=' + blog1blogid + '&blogentid=' + blogentid + '&msgid=' + msgid;
location.href = link;
return;
}
function deleteBlogComment(blogid, blogcommentid) {
var result = confirm("Are you sure you want to delete this blog entry comment?");
if (result) {
$('#ctl17_ctl01_ctl00_hf_FormAction').attr("value", "DELCOM|" + blogid + "|" + blogcommentid);
doAsyncPostback();
}
return result;
}
function scrollToAnchor(aid) {
var aTag = $(aid);
$('html,body').stop().animate({ scrollTop: aTag.offset().top - 100 }, 2500, 'easeInOutExpo');
}
$(document).ready(function () {
$(window).resize();
var commentid = 0;
var blogentryid = '37345a4e-d988-4bff-8831-07f1083a1a6a';
if (blogentryid.length > 1) {
$('#liEditArticle').fadeIn('fast', function () {
$('#liRemoveArticle').fadeIn('fast');
});
if ('7c66665b-c9ed-48c8-9691-c7cf20e5878d' != '') {
setTimeout(function () {
getArticleViews();
}, 10);
}
}
else if ('7c66665b-c9ed-48c8-9691-c7cf20e5878d' != '') {
setTimeout(function () {
getArticleViews();
}, 10);
}
else {
//do nothing
}
setTimeout(function () {
if ($('#disqus_comments_script_wrapper').length > 0) {
$('body').append($('#disqus_comments_script_wrapper'));
}
}, 12);
var bview = getCurrentView();
setTimeout(function () {
switch (bview) {
case "article": {
$('.blog-button-wrapper').show();
//$('.blog-button-wrapper').css('display','block');
$('a.btn-blog-action[data-target="edit"]').parents().closest('li').show();
$('a.btn-blog-action[data-target="remove"]').parents().closest('li').show();
break;
}
default: {
$('.blog-button-wrapper').show();
//$('.blog-button-wrapper').css('display','block');
$('a.btn-blog-action[data-target="edit"]').parents().closest('li').hide();
$('a.btn-blog-action[data-target="remove"]').parents().closest('li').hide();
}
}
}, 1000);
});// end doc.ready
$(window).resize(function () {
//setPageLayout();
setTimeout(function () {
// blog1 snippet...
if ($('body').find('#summary-masonry').length > 0) {
// this was a jquery method thats been lost or deprecated
// from unify that created the masonry view. since we're
// transitioning from Bootstrap3 to Bootrap4 before we update
// unify to b4 version...hide the masonry view.
// no one was using it on live but us.
//gridBoxesOnDemand();
}
}, 200);
});
$('body').on('click', '.blog-action', function (e) {
var target = $(this).attr('data-target')
switch (target) {
case "add": {
disableBackground("body", false, 0, 0, 0, 0)
break;
}
case "edit": {
disableBackground("body", false, 0, 0, 0, 0)
break;
}
}
});
$('body').on('click', 'a.blog1-tag', function (e) {
e.preventDefault();
e.stopPropagation();
doTagLookup($(this).text().trim());
});
$('body').on('click', 'a.blog1-category', function (e) {
e.preventDefault();
e.stopPropagation();
doCatLookup($(this).text().trim());
});
function doCatLookup(inval) {
try {
$.ajax({
type: 'POST',
url: '/aspx/Blob2/Blobs/BlobWebService.aspx/GetCatUrl',
data: '{"originalid":"26790","category":' + JSON.stringify(inval) + '}',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
async: false,
cache: false,
success: function (response) {
if (response.d.length > 0) {
window.location.assign(response.d);
}
else {
window.location.assign("/blog1/category/unknown");
}
},
failure: function (response) {
},
error: function (response) {
}
});
}
catch (err) {
}
}
function doTagLookup(inval) {
try {
$.ajax({
type: 'POST',
url: '/aspx/Blob2/Blobs/BlobWebService.aspx/GetTagUrl',
data: '{"originalid":"26790","tag":' + JSON.stringify(inval) + '}',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
async: false,
cache: false,
success: function (response) {
if (response.d.length > 0) {
window.location.assign(response.d);
}
else {
window.location.assign("/blog1/tag/unknown");
}
},
failure: function (response) {
},
error: function (response) {
}
});
}
catch (err) {
}
}
$(function () {
if ($('#anchor_FBStatus').length >= 1) {
$('#anchor_FBStatus').popover();
$('#anchor_TWStatus').popover();
$('#anchor_FBStatus').click(function (e) {
$('.popover-title').append('
');
$(this).popover();
});
$('#anchor_TWStatus').click(function (e) {
$('.popover-title').append('
');
$(this).popover();
});
$(document).click(function (e) {
if (e.target.id == "popovercloseid1") {
$('#anchor_FBStatus').popover('hide');
}
if (e.target.id == "popovercloseid2") {
$('#anchor_TWStatus').popover('hide');
}
});
}
});
function doAsyncPostback() {
//ff-bug #325 fix
setTimeout(function () {
__doPostBack("ctl17$ctl01$ctl00$lb_Async", "");
}, 1);
}
function getTempKey() {
return '30228776-d346-4185-b282-5eeb190747ae';
}
function getTalkspotBlogId() {
return 4911;
}
function doAddArticle() {
//ff-bug #325 fix
setTimeout(function () {
__doPostBack("ctl17$ctl01$ctl00$btnAddArticle", "");
}, 1);
}
function doEditArticle() {
//ff-bug #325 fix
setTimeout(function () {
__doPostBack("ctl17$ctl01$ctl00$btnEditArticle", "");
}, 1);
}
function doRemoveArticle() {
$("#ctl17_ctl01_ctl00_btnDeleteArticle").click();
}
function getCurrentView() {
return $('#ctl17_ctl01_ctl00_hf_FormAction').val();
}
- 8/7/2012
- Admin
- 4739 views
We have returned to Opal Lady and left the cosy fire of our temporary hillside hideaway in Tasmania. We are busy catching up on boat jobs, visiting family and friends and yesterday we had a very different experience . . . . .. . .
My Mum and Dad are grey nomads and for 6mths of the year they travel north in their Winnebago motorhome to enjoy the sunshine and warmth, whilst Dads pride and joy, his 26' Caporn with its high power 165hp super turbo charged Volvo engine sits in it's marina pen. Like any boat, it shows its dislike by not working so good when you come back. So with this in mind, and a beautiful day ahead, we drove to the eastern side of the lake to 'take it for a spin'.
Well, what a cultural shock, as we cruised out of the marina and opened up the throttle, we realised why we LOVE our beautiful Nordhavn!!!
Hey Dad, Where are the stabilisers??? With the iphone on speaker, Dad on the line, who couldn't hear as it was tooooo noisey, we opened the throttle further (of course, all while Dad was giving us instructions) by now we had it at 3800 rpms with a speed of 32 MPH!!! Me: "It's tilting to starboard", Yep, that's right!! said Dad. We adjusted the leg and continued up on the plane, we suddenly both realised how much we appreciate the style and design of our Nordhavn. Thankfully it was a calm day! We stopped the motor, which made it easier to talk, and drifted while we boiled the kettle and enjoyed afternoon tea at one of my favourite childhood fishing spots, Fishing Point. Dads' father used to take us there many times when we were children.
SO for anyone that is coming from ANY semi to light displacement boat and thinking of a Nordhavn, it is completely different, NO noise, total stability, you can walk around with your solid boat under you, there is no rocking from side to side as you move around the boat. I could go on, but won't, it is just a whole different world!!! I would encourage anyone thinking of a Nordhavn to go on board and FEEL it!
We have now been in the marina for the best part of three months and we will do a cost analysis, which we will post soon to show the cost difference between 'living on the move' and 'living at rest'!