function setDemoLinks(){
// SET ALL NULL LINKS AS DEMO POP UP
/*
$('body a').each(function(){
var thisHref = $(this).attr('href');
if (thisHref == "#"){
$(this).attr('onclick','javascript:void(0); return false');
}
});
*/
$('body a').click(function () {
var thisTarget = $(this).attr('href');
if (thisTarget == "#"){
alert('This is a demonstration link or the feature is under construction.');
return false;
}
});
// END SET ALL DEMO LINKS
}
