
(function($){
$(document).ready(function(){
$('body').prepend('<div id="supersized-loader"></div>').prepend('<div id="supersized"></div>');
});
$.supersized=function(options){
var settings={
slideshow:1,
autoplay:1,
start_slide:1,
random:0,
slide_interval:5000,
transition:1,
transition_speed:750,
new_window:1,
pause_hover:0,
keyboard_nav:1,
performance:1,
image_protect:1,
image_path:'img/',
min_width:0,
min_height:0,
vertical_center:1,
horizontal_center:1,
fit_portrait:0,
fit_landscape:0,
navigation:1,
thumbnail_navigation:0,
slide_counter:1,
slide_captions:1
};
var element=$('#supersized');
var pauseplay='#pauseplay';
if(options){
var options=$.extend(settings,options);
}else{
var options=$.extend(settings);
}
var inAnimation=false;
var isPaused=false;
var image_path=options.image_path;
if(options.start_slide){
var currentSlide=options.start_slide-1;
}else{
var currentSlide=Math.floor(Math.random()*options.slides.length);
}
var linkTarget=options.new_window?' target="_blank"':'';
if(options.performance==3){
element.addClass('speed');
}else if((options.performance==1)||(options.performance==2)){
element.addClass('quality');
}
if(options.random){
arr=options.slides;
for(var j,x,i=arr.length;i;j=parseInt(Math.random()*i),x=arr[--i],arr[i]=arr[j],arr[j]=x);
options.slides=arr;
}
if(options.slides.length>1){
currentSlide-1<0?loadPrev=options.slides.length-1:loadPrev=currentSlide-1;
var imageLink=(options.slides[loadPrev].url)?"href='"+options.slides[loadPrev].url+"'":"";
$("<img/>").attr("src",options.slides[loadPrev].image).appendTo(element).wrap('<a '+imageLink+linkTarget+'></a>');
}
imageLink=(options.slides[currentSlide].url)?"href='"+options.slides[currentSlide].url+"'":"";
$("<img/>").attr("src",options.slides[currentSlide].image).appendTo(element).wrap('<a class="activeslide" '+imageLink+linkTarget+'></a>');
if(options.slides.length>1){
currentSlide==options.slides.length-1?loadNext=0:loadNext=currentSlide+1;
imageLink=(options.slides[loadNext].url)?"href='"+options.slides[loadNext].url+"'":"";
$("<img/>").attr("src",options.slides[loadNext].image).appendTo(element).wrap('<a '+imageLink+linkTarget+'></a>');
}
element.hide();
$('#controls-wrapper').hide();
$(document).ready(function(){
resizenow();
});
$(window).load(function(){
$('#supersized-loader').hide();
element.fadeIn('fast');
$('#controls-wrapper').show();
if(options.thumbnail_navigation){
currentSlide-1<0?prevThumb=options.slides.length-1:prevThumb=currentSlide-1;
$('#prevthumb').show().html($("<img/>").attr("src",options.slides[prevThumb].image));
currentSlide==options.slides.length-1?nextThumb=0:nextThumb=currentSlide+1;
$('#nextthumb').show().html($("<img/>").attr("src",options.slides[nextThumb].image));
}
resizenow();
if(options.slide_captions)$('#slidecaption').html(options.slides[currentSlide].title);
if(!(options.navigation))$('#navigation').hide();
if(options.slideshow&&options.slides.length>1){
if(options.slide_counter){
$('#slidecounter .slidenumber').html(currentSlide+1);
$('#slidecounter .totalslides').html(options.slides.length);
}
slideshow_interval=setInterval(nextslide,options.slide_interval);
if(!(options.autoplay)){
clearInterval(slideshow_interval);
isPaused=true;
if($(pauseplay).attr('src'))$(pauseplay).attr("src",image_path+"play_dull.png");
}
if(options.thumbnail_navigation){
$('#nextthumb').click(function(){
if(inAnimation)return false;
clearInterval(slideshow_interval);
nextslide(element,options);
if(!(isPaused))slideshow_interval=setInterval(nextslide,options.slide_interval);
return false;
});
$('#prevthumb').click(function(){
if(inAnimation)return false;
clearInterval(slideshow_interval);
prevslide(element,options);
if(!(isPaused))slideshow_interval=setInterval(nextslide,options.slide_interval);
return false;
});
}
if(options.navigation){
$('#navigation a').click(function(){
$(this).blur();
return false;
});
$('#nextslide').click(function(){
if(inAnimation)return false;
clearInterval(slideshow_interval);
nextslide();
if(!(isPaused))slideshow_interval=setInterval(nextslide,options.slide_interval);
return false;
});
if($('#nextslide').attr('src')){
$('#nextslide').mousedown(function(){
$(this).attr("src",image_path+"forward.png");
});
$('#nextslide').mouseup(function(){
$(this).attr("src",image_path+"forward_dull.png");
});
$('#nextslide').mouseout(function(){
$(this).attr("src",image_path+"forward_dull.png");
});
}
$('#prevslide').click(function(){
if(inAnimation)return false;
clearInterval(slideshow_interval);
prevslide();
if(!(isPaused))slideshow_interval=setInterval(nextslide,options.slide_interval);
return false;
});
if($('#prevslide').attr('src')){
$('#prevslide').mousedown(function(){
$(this).attr("src",image_path+"back.png");
});
$('#prevslide').mouseup(function(){
$(this).attr("src",image_path+"back_dull.png");
});
$('#prevslide').mouseout(function(){
$(this).attr("src",image_path+"back_dull.png");
});
}
$(pauseplay).click(function(){
if(inAnimation)return false;
if(isPaused){
if($(pauseplay).attr('src'))$(pauseplay).attr("src",image_path+"pause_dull.png");
isPaused=false;
slideshow_interval=setInterval(nextslide,options.slide_interval);
}else{
if($(pauseplay).attr('src'))$(pauseplay).attr("src",image_path+"play_dull.png");
clearInterval(slideshow_interval);
isPaused=true;
}
return false;
});
}
}
});
if(options.keyboard_nav){
$(document.documentElement).keydown(function(event){
if((event.keyCode==37)||(event.keyCode==40)){
if($('#prevslide').attr('src'))$('#prevslide').attr("src",image_path+"back.png");
}else if((event.keyCode==39)||(event.keyCode==38)){
if($('#nextslide').attr('src'))$('#nextslide').attr("src",image_path+"forward.png");
}
});
$(document.documentElement).keyup(function(event){
clearInterval(slideshow_interval);
if((event.keyCode==37)||(event.keyCode==40)){
if($('#prevslide').attr('src'))$('#prevslide').attr("src",image_path+"back_dull.png");
if(inAnimation)return false;
clearInterval(slideshow_interval);
prevslide();
if(!(isPaused))slideshow_interval=setInterval(nextslide,options.slide_interval);
return false;
}else if((event.keyCode==39)||(event.keyCode==38)){
if($('#nextslide').attr('src'))$('#nextslide').attr("src",image_path+"forward_dull.png");
if(inAnimation)return false;
clearInterval(slideshow_interval);
nextslide();
if(!(isPaused))slideshow_interval=setInterval(nextslide,options.slide_interval);
return false;
}else if(event.keyCode==32){
if(inAnimation)return false;
if(isPaused){
if($(pauseplay).attr('src'))$(pauseplay).attr("src",image_path+"pause_dull.png");
isPaused=false;
slideshow_interval=setInterval(nextslide,options.slide_interval);
}else{
if($(pauseplay).attr('src'))$(pauseplay).attr("src",image_path+"play_dull.png");
isPaused=true;
}
return false;
}
});
}
if(options.slideshow&&options.pause_hover){
$(element).hover(function(){
if(inAnimation)return false;
if(!(isPaused)&&options.navigation){
if($(pauseplay).attr('src'))$(pauseplay).attr("src",image_path+"pause.png");
clearInterval(slideshow_interval);
}
},function(){
if(!(isPaused)&&options.navigation){
if($(pauseplay).attr('src'))$(pauseplay).attr("src",image_path+"pause_dull.png");
slideshow_interval=setInterval(nextslide,options.slide_interval);
}
});
}
$(window).resize(function(){
resizenow();
});
function resizenow(){
return element.each(function(){
var t=$('img',element);
$(t).each(function(){
var ratio=($(this).height()/$(this).width()).toFixed(2);
thisSlide=$(this);
var browserwidth=$(window).width();
var browserheight=$(window).height();
var offset;
if((browserheight<=options.min_height)&&(browserwidth<=options.min_width)){
if((browserheight/browserwidth)>ratio){
options.fit_landscape&&ratio<=1?resizeWidth(true):resizeHeight(true);
}else{
options.fit_portrait&&ratio>1?resizeHeight(true):resizeWidth(true);
}
}else if(browserwidth<=options.min_width){
if((browserheight/browserwidth)>ratio){
options.fit_landscape&&ratio<=1?resizeWidth(true):resizeHeight();
}else{
options.fit_portrait&&ratio>1?resizeHeight():resizeWidth(true);
}
}else if(browserheight<=options.min_height){
if((browserheight/browserwidth)>ratio){
options.fit_landscape&&ratio<=1?resizeWidth():resizeHeight(true);
}else{
options.fit_portrait&&ratio>1?resizeHeight(true):resizeWidth();
}
}else{
if((browserheight/browserwidth)>ratio){
options.fit_landscape&&ratio<=1?resizeWidth():resizeHeight();
}else{
options.fit_portrait&&ratio>1?resizeHeight():resizeWidth();
}
}
function resizeWidth(minimum){
if(minimum){
if(thisSlide.width()<browserwidth||thisSlide.width()<options.min_width){
if(thisSlide.width()*ratio>=options.min_height){
thisSlide.width(options.min_width);
thisSlide.height(thisSlide.width()*ratio);
}else{
resizeHeight();
}
}
}else{
if(options.min_height>=browserheight&&!options.fit_landscape){
if(browserwidth*ratio>=options.min_height||(browserwidth*ratio>=options.min_height&&ratio<=1)){
thisSlide.width(browserwidth);
thisSlide.height(browserwidth*ratio);
}else if(ratio>1){
thisSlide.height(options.min_height);
thisSlide.width(thisSlide.height()/ratio);
}else if(thisSlide.width()<browserwidth){
thisSlide.width(browserwidth);
thisSlide.height(thisSlide.width()*ratio);
}
}else{
thisSlide.width(browserwidth);
thisSlide.height(browserwidth*ratio);
}
}
};
function resizeHeight(minimum){
if(minimum){
if(thisSlide.height()<browserheight){
if(thisSlide.height()/ratio>=options.min_width){
thisSlide.height(options.min_height);
thisSlide.width(thisSlide.height()/ratio);
}else{
resizeWidth(true);
}
}
}else{
if(options.min_width>=browserwidth){
if(browserheight/ratio>=options.min_width||ratio>1){
thisSlide.height(browserheight);
thisSlide.width(browserheight/ratio);
}else if(ratio<=1){
thisSlide.width(options.min_width);
thisSlide.height(thisSlide.width()*ratio);
}
}else{
thisSlide.height(browserheight);
thisSlide.width(browserheight/ratio);
}
}
};
if(options.horizontal_center){
$(this).css('left',(browserwidth-$(this).width())/2);
}
if(options.vertical_center){
$(this).css('top',(browserheight-$(this).height())/2);
}
});
if(options.image_protect){
$('img',element).bind("contextmenu",function(){
return false;
});
$('img',element).bind("mousedown",function(){
return false;
});
}
return false;
});
};
$("#selectinput").change(function(){
var selectedSlide=0;
$("select option:selected").each(function(){
selectedSlide=$(this).val();
});
if(inAnimation)return false;
else inAnimation=true;
var slideNum=selectedSlide;
var slides=options.slides;
var currentslide=element.find('.activeslide');
currentslide.removeClass('activeslide');
if(currentslide.length==0)currentslide=element.find('a:last');
var nextslide=currentslide.next().length?currentslide.next():element.find('a:first');
var prevslide=nextslide.prev().length?nextslide.prev():element.find('a:last');
$('.prevslide').removeClass('prevslide');
prevslide.addClass('prevslide');
currentSlide=slideNum-1;
if(options.performance==1)element.removeClass('quality').addClass('speed');
loadSlide=false;
currentSlide==slides.length-1?loadSlide=slideNum:loadSlide=slideNum;
imageLink=(options.slides[loadSlide].url)?"href='"+options.slides[loadSlide].url+"'":"";
$("<img/>").attr("src",options.slides[loadSlide].image).appendTo(element).wrap("<a "+imageLink+linkTarget+"></a>");
if(options.thumbnail_navigation==1){
currentSlide-1<0?prevThumb=slides.length-1:prevThumb=loadSlide-2;
$('#prevthumb').html($("<img/>").attr("src",options.slides[prevThumb].image));
nextThumb=loadSlide;
$('#nextthumb').html($("<img/>").attr("src",options.slides[nextThumb].image));
}
currentslide.prev().remove();
if(options.slide_counter){
$('#slidecounter .slidenumber').html(currentSlide+1);
}
if(options.slide_captions){
(options.slides[currentSlide].title)?$('#slidecaption').html(options.slides[currentSlide].title):$('#slidecaption').html('');
}
nextslide.hide().addClass('activeslide');
switch(options.transition){
case 0:
nextslide.show();inAnimation=false;
break;
case 1:
nextslide.fadeTo(options.transition_speed,1,function(){afterAnimation();});
break;
case 2:
nextslide.animate({top:-$(window).height()},0).show().animate({top:0},options.transition_speed,function(){afterAnimation();});
break;
case 3:
nextslide.animate({left:$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
break;
case 4:
nextslide.animate({top:$(window).height()},0).show().animate({top:0},options.transition_speed,function(){afterAnimation();});
break;
case 5:
nextslide.animate({left:-$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
break;
case 6:
nextslide.animate({left:$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
currentslide.animate({left:-$(window).width()},options.transition_speed);
break;
case 7:
nextslide.animate({left:-$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
currentslide.animate({left:$(window).width()},options.transition_speed);
break;
};
});
function nextslide(){
if(inAnimation)return false;
else inAnimation=true;
var slides=options.slides;
var currentslide=element.find('.activeslide');
currentslide.removeClass('activeslide');
if(currentslide.length==0)currentslide=element.find('a:last');
var nextslide=currentslide.next().length?currentslide.next():element.find('a:first');
var prevslide=nextslide.prev().length?nextslide.prev():element.find('a:last');
$('.prevslide').removeClass('prevslide');
prevslide.addClass('prevslide');
currentSlide+1==slides.length?currentSlide=0:currentSlide++;
if(options.performance==1)element.removeClass('quality').addClass('speed');
loadSlide=false;
currentSlide==slides.length-1?loadSlide=0:loadSlide=currentSlide+1;
imageLink=(options.slides[loadSlide].url)?"href='"+options.slides[loadSlide].url+"'":"";
$("<img/>").attr("src",options.slides[loadSlide].image).appendTo(element).wrap("<a "+imageLink+linkTarget+"></a>");
if(options.thumbnail_navigation==1){
currentSlide-1<0?prevThumb=slides.length-1:prevThumb=currentSlide-1;
$('#prevthumb').html($("<img/>").attr("src",options.slides[prevThumb].image));
nextThumb=loadSlide;
$('#nextthumb').html($("<img/>").attr("src",options.slides[nextThumb].image));
}
currentslide.prev().remove();
if(options.slide_counter){
$('#slidecounter .slidenumber').html(currentSlide+1);
}
if(options.slide_captions){
(options.slides[currentSlide].title)?$('#slidecaption').html(options.slides[currentSlide].title):$('#slidecaption').html('');
}
nextslide.hide().addClass('activeslide');
switch(options.transition){
case 0:
nextslide.show();inAnimation=false;
break;
case 1:
nextslide.fadeTo(options.transition_speed,1,function(){afterAnimation();});
break;
case 2:
nextslide.animate({top:-$(window).height()},0).show().animate({top:0},options.transition_speed,function(){afterAnimation();});
break;
case 3:
nextslide.animate({left:$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
break;
case 4:
nextslide.animate({top:$(window).height()},0).show().animate({top:0},options.transition_speed,function(){afterAnimation();});
break;
case 5:
nextslide.animate({left:-$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
break;
case 6:
nextslide.animate({left:$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
currentslide.animate({left:-$(window).width()},options.transition_speed);
break;
case 7:
nextslide.animate({left:-$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
currentslide.animate({left:$(window).width()},options.transition_speed);
break;
};
}
function prevslide(){
if(inAnimation)return false;
else inAnimation=true;
var slides=options.slides;
var currentslide=element.find('.activeslide');
currentslide.removeClass('activeslide');
if(currentslide.length==0)currentslide=$(element).find('a:first');
var nextslide=currentslide.prev().length?currentslide.prev():$(element).find('a:last');
var prevslide=nextslide.next().length?nextslide.next():$(element).find('a:first');
$('.prevslide').removeClass('prevslide');
prevslide.addClass('prevslide');
currentSlide==0?currentSlide=slides.length-1:currentSlide--;
if(options.performance==1)element.removeClass('quality').addClass('speed');
loadSlide=false;
currentSlide-1<0?loadSlide=slides.length-1:loadSlide=currentSlide-1;
imageLink=(options.slides[loadSlide].url)?"href='"+options.slides[loadSlide].url+"'":"";
$("<img/>").attr("src",options.slides[loadSlide].image).prependTo(element).wrap("<a "+imageLink+linkTarget+"></a>");
if(options.thumbnail_navigation==1){
prevThumb=loadSlide;
$('#prevthumb').html($("<img/>").attr("src",options.slides[prevThumb].image));
currentSlide==slides.length-1?nextThumb=0:nextThumb=currentSlide+1;
$('#nextthumb').html($("<img/>").attr("src",options.slides[nextThumb].image));
}
currentslide.next().remove();
if(options.slide_counter){
$('#slidecounter .slidenumber').html(currentSlide+1);
}
if(options.slide_captions){
(options.slides[currentSlide].title)?$('#slidecaption').html(options.slides[currentSlide].title):$('#slidecaption').html('');
}
nextslide.hide().addClass('activeslide');
switch(options.transition){
case 0:
nextslide.show();inAnimation=false;
break;
case 1:
nextslide.fadeTo(options.transition_speed,1,function(){afterAnimation();});
break;
case 2:
nextslide.animate({top:$(window).height()},0).show().animate({top:0},options.transition_speed,function(){afterAnimation();});
break;
case 3:
nextslide.animate({left:-$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
break;
case 4:
nextslide.animate({top:-$(window).height()},0).show().animate({top:0},options.transition_speed,function(){afterAnimation();});
break;
case 5:
nextslide.animate({left:$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
break;
case 6:
nextslide.animate({left:-$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
currentslide.animate({left:$(window).width()},options.transition_speed);
break;
case 7:
nextslide.animate({left:$(window).width()},0).show().animate({left:0},options.transition_speed,function(){afterAnimation();});
currentslide.animate({left:-$(window).width()},options.transition_speed);
break;
};
}
function afterAnimation(){
inAnimation=false;
if(options.performance==1){
element.removeClass('speed').addClass('quality');
}
resizenow();
}
};
})(jQuery);
(function(a){a.fn.bPopup=function(f,j){function s(){var b=a("input[type=text]",c).length!=0,k=o.vStart!=null?o.vStart:d.scrollTop()+g;c.css({left:d.scrollLeft()+h,position:"absolute",top:k,"z-index":o.zIndex}).appendTo(o.appendTo).hide(function(){b&&c.each(function(){c.find("input[type=text]").val("")});if(o.loadUrl!=null){o.contentContainer=o.contentContainer==null?c:a(o.contentContainer);switch(o.content){case"ajax":o.contentContainer.load(o.loadUrl);break;case"iframe":a('<iframe width="100%" height="100%"></iframe>').attr("src",
o.loadUrl).appendTo(o.contentContainer);break;case"xlink":a("a#bContinue").attr({href:o.loadUrl});a("a#bContinue .btnLink").text(a("a.xlink").attr("title"))}}}).fadeIn(o.fadeSpeed,function(){b&&c.find("input[type=text]:first").focus();a.isFunction(j)&&j()});t()}function i(){o.modal&&a("#bModal").fadeOut(o.fadeSpeed,function(){a("#bModal").remove()});c.fadeOut(o.fadeSpeed,function(){o.loadUrl!=null&&o.content!="xlink"&&o.contentContainer.empty()});o.scrollBar||a("html").css("overflow","auto");a("."+
o.closeClass).die("click");a("#bModal").die("click");d.unbind("keydown.bPopup");e.unbind(".bPopup");c.data("bPopup",null);return false}function u(){if(m){var b=[d.height(),d.width()];return{"background-color":o.modalColor,height:b[0],left:l(),opacity:0,position:"absolute",top:0,width:b[1],"z-index":o.zIndex-1}}else return{"background-color":o.modalColor,height:"100%",left:0,opacity:0,position:"fixed",top:0,width:"100%","z-index":o.zIndex-1}}function t(){a("."+o.closeClass).live("click",i);o.modalClose&&
a("#bModal").live("click",i).css("cursor","pointer");o.follow&&e.bind("scroll.bPopup",function(){c.stop().animate({left:d.scrollLeft()+h,top:d.scrollTop()+g},o.followSpeed)}).bind("resize.bPopup",function(){if(o.modal&&m){var b=[d.height(),d.width()];n.css({height:b[0],width:b[1],left:l()})}b=p(c,o.amsl);g=b[0];h=b[1];c.stop().animate({left:d.scrollLeft()+h,top:d.scrollTop()+g},o.followSpeed)});o.escClose&&d.bind("keydown.bPopup",function(b){b.which==27&&i()})}function l(){return e.width()<a("body").width()?
0:(a("body").width()-e.width())/2}function p(b,k){var q=(e.height()-b.outerHeight(true))/2-k,v=(e.width()-b.outerWidth(true))/2+l();return[q<20?20:q,v]}if(a.isFunction(f)){j=f;f=null}o=a.extend({},a.fn.bPopup.defaults,f);o.scrollBar||a("html").css("overflow","hidden");var c=a(this),n=a('<div id="bModal"></div>'),d=a(document),e=a(window),r=p(c,o.amsl),g=r[0],h=r[1],m=a.browser.msie&&parseInt(a.browser.version)==6&&typeof window.XMLHttpRequest!="object";this.close=function(){o=c.data("bPopup");i()};
return this.each(function(){if(!c.data("bPopup")){o.modal&&n.css(u()).appendTo(o.appendTo).animate({opacity:o.opacity},o.fadeSpeed);c.data("bPopup",o);s()}})};a.fn.bPopup.defaults={amsl:150,appendTo:"body",closeClass:"bClose",content:"ajax",contentContainer:null,escClose:true,fadeSpeed:250,follow:true,followSpeed:500,loadUrl:null,modal:true,modalClose:true,modalColor:"#000",opacity:0.7,scrollBar:true,vStart:null,zIndex:9999}})(jQuery);
$(document).ready(function(){
$image1="<div class='box'><h1>SUPER FAST ONLINE GOLF BOOKING</h1><h2 class='orange'>Technology to save you time and money</h2><p>Our software gives all its users a fast pleasurable experience, Visitors, Members and Administrators all find it very easy and fast to use.</p></div>";
$image2="<div class='box'><h1>MANAGEMENT</h1><h2 class='orange'>... allows your Administrator, Pro, Hoteliers, Tour Operators, Members, Societies, Visitors and Visiting Groups to book tee times online at any time.</h2><p>5 years in development, Manage Golf is the world's most powerful and professional tool specifically designed to save Golf Clubs and Club Managers both time and money through tee time management.</p><br /></div>";
$image3="<div class='box'><h1>This is a serious tool designed to help you manage your business and give good service to Members.</h1><h2 class='orange'>Yours is a proper grown up business and you need proper grown up tools to do the job.</h2><p>Our online system doesn't just list your bookings... <br />It helps you manage the whole business of selling tee times.</p></div>";
$image4="<div class='box'><h1>BENEFITS FOR YOUR CLUB</h1><h2 class='orange'>Club Appearance Throughout</h2><p>We appreciate that your club image is important.</p><br /><p>Manage Golf maintains this image throughout with the addition of your club branding and logos on all web pages.</p><br /><p>Ultimately, this will enhance your club standing through Manage Golf's ability to easily ensure that your image and branding is highlighted throughout.</p></div>";
$image5="<div class='box'><h1>EASILY ADDS ON TO YOUR EXISTING WEBSITE, BUT...</h1><h2 class='orange'>Should you decide that you need a website or your current online presence needs to be updated or refreshed:</h2><p>Manage Golf are widely regarded as being the market leaders in Golf Club website design and construction.</p><br /><p>We can offer full Copywriting and Photography to ensure you have the most professional website available.</p></div>";
$image6="<div class='box'><h1>BENEFITS FOR YOUR CLUB</h1><h2 class='orange'>Full User Management</h2><p>Members and visitors alike will love Manage Golf as it enables them to easily and quickly manage their golf.</p><br /><p>Rounds (and other facilities) can be booked from any computer or modern phone anywhere in the world.</p><br /><br /><br /><p class='size_58 align_center'>24/7</p><br /></div>";
$image7="<div class='box'><h1>BENEFITS FOR YOUR CLUB</h1><h2 class='orange'>Maximise Course Usage</h2><p>Allows you to spot quieter periods and target Special Offers and other promotional offers and discounts like 2 for 1's to these shoulder times.</p><p class='size_58 align_center'><img src='assets/images/chart.png' height='130' alt='chart' /></p></div>";
$image8="<div class='box'><h1>BENEFITS FOR YOUR CLUB</h1><h2 class='orange'>Drives Visitors to your Club</h2><p>Manage Golf has been built to allow you to employ many methods to increase visitor revenue.</p><br /><ul><li>Special Offers</li><li>Promotional Offers</li><li>Discounts</li><li>2 for 1's</li><li>Group Booking Discounts</li><li>Day Ticket Offers</li><li>Twilight Times</li></ul></div>";
$image9="<div class='box'><h1>PAYMENT METHODS</h1><h2 class='orange'>Any decent system requires a number of different payment methods to be available to visitors.</h2><p>Uniquely our system offers all of these</p> <ul><li><b>Deposit Method</b></li><li><b>Pay by Card</b></li><li><b>Pay by PayPal</b></li><li><b>Pay by Cheque</b></li><li><b>Pay by Bank Transfer</b></li><li><b>Pay to Starter</b></li></ul></div>";
$image10="<div class='box'><h1>PAYMENT METHODS</h1><h2 class='orange'>Some more about the Deposit Method.</h2><p>No Visitor wants to pay for a whole party on their card &nbsp;9 months in advance. We allow you to elect to offer the deposit options only up to a certain number of days before the date of play. A club can decide the number of days before play when the balance must be paid and our system sends out reminder emails to your visitor and collects the money online. If payment isn't made the times would be resold. Alternatively the club can elect to have the balance paid to the starter.</p></div>";
$image11="<div class='box'><h1>PAYMENT METHODS</h1><h2 class='orange'>Online Card Payments</h2><p>Many things which you'd be charged extra for in other systems are all included free as part of the Manage golf System, like... Online card payments.</p><br /><p>Our System offers you the option of online payments via PayPal Cards or PayPal Accounts as well as Card Agencies like SagePay.</p></div>";
$image12="<div class='box'><h1>CATERING AND EQUIPMENT PACKAGES</h1><h2 class='orange'>Manage Golf provides a full description of your catering and hire facilities.</h2><p>This is designed to promote your full club facilities and thus increase club revenues. It tracks items of equipment that are in use, in need of service, and full availability. You can create Catering Packages to be offered to Groups or Societies. Your caterer or club house manager receives timeous notification of expected numbers of players requesting catering allowing for efficient budgeting.</p></div>";
$image13="<div class='box'><h1>BENEFITS FOR YOUR CLUB</h1><h2 class='orange'>Market Survey Form for Visitors</h2><p>From the Administration Area you can instruct our system to send a 'Thank You' email to every visitor two days after they play.</p><br /><p>You can also set up a questionnaire with a link to it on the email and thus receive valuable feedback from your visitors.</p></div>";
$image14="<div class='box'><h1>BENEFITS FOR YOUR CLUB</h1><h2 class='orange'>Club and Member Notifications</h2><p>Keep your membership updated to club events with an unlimited number of notices which appears prominently adjacent to tee times - </p><br /><p>No excuses for members not knowing club fees are due!</p></div>";
$image15="<div class='box'><h1>BENEFITS FOR YOUR CLUB</h1><h2 class='orange'>Extra Courses are Free</h2><p>Do you have more than one course...</p><br /><p>They will be all included for the same charge.</p><br /><p>The package covers multiple courses inclusively.<br /><br />THERE ARE NO HIDDEN OR EXTRA CHARGES WITH MANAGE GOLF.</p></div>";
$image16="<div class='box'><h1>COMPETITION MANAGER INCLUDED FREE</h1><h2 class='orange'>The sophisticated Competition Manager allows you to Create Competition Times</h2><ul><li>Create different Competition types in the system</li><li>Automatically block out tee times</li><li>Start Dates and End Dates for competition entries</li><li>Accept entries for Members and Open Competitions</li><li>Also, 'Enter as You Please' type directly into tee sheet</li><li>Instigate draw in system</li><li>Publish draw on tee sheet</li></ul></div>";
$image17="<div class='box'><h1>SOCIETY AND GROUP BOOKING TOOL</h1><h2 class='orange'>A purpose built tool for your Admin to negotiate, deal and track the status of all your Society Enquiries.<h2><p>Deal with special requests for food, equipment and services. Handle discounts, adjust numbers, deposits and payments. Reminders pop up when diarised events are on the horizon. Apart from helping you increase your income through Society and Group Bookings, it helps you manage the whole process.</p></div>";
$image18="<div class='box'><h1>CREDIT ACCOUNTS INCLUDED FREE</h1><h2 class='orange'>Credit Accounts make it easy for Tour Operators to do business with you. Local Hotels can use a Credit Account to make instant bookings on behalf of their guests.</h2><p>You could choose to reward your Credit Account holders by applying a percentage discount on every booking. Manage Golf makes it easy for others to do business with you and thus increase your revenue.</p></div>";
$image19="<div class='box'><h1>'SPECIAL OFFERS' PUBLISHED INSTANTLY</h1><h2 class='orange'>If you want to create a Special Offer you can do so instantly, and assign it to particular Tee Times on Particular Days. For example....</h2><div class='highlightbox'><p>Bacon roll, One round of golf with a buggy, Lunch and a dram included then a taxi home!<br />&pound;60 each person for groups of 3+<br /> and today only!</p></div></div>";
$image20="<div class='box'><h1>BENEFITS FOR YOUR MEMBERS </h1><h2 class='orange'>Fully Integrated Golfer's Calendar</h2><p>As golfers we've always thought giving every one of your members their own Golfing Calendar was a great idea.</p><br /><p>Every club competition appears automatically, click and it's entered. Every Tie, Match and Bounce game can be added along with the wife's Birthday... so it's a major safety feature too!</p></div>";
$image21="<div class='box'><h1>BENEFITS FOR YOUR MEMBERS </h1><h2 class='orange'>Integrated Golfer's Messaging System</h2><p>Your members can select another member's name from the list and leave a message.</p><br /><p>The message appears on the other member's screen when he or she is next using the system, and then they can leave a reply. It becomes easy to organise Ties.</p></div>";
$image22="<div class='box'><h1>BENEFITS FOR YOUR CLUB</h1><h2 class='orange'>Without going into details, our system also deals with...</h2><ul><li>Two, Three and Four Slots</li><li>Booking in from both ends of a period</li><li>Rolling Restrictions</li><li>Reciprocal Clubs</li><li>Corporate Memberships</li><li>Equal hours on use of buggies</li><li>Caddies by Caddy Master</li></</ul><p></p></div>";
$image23="<div class='box'><h1>LOCAL GOLF PASSES</h1><h2 class='orange'>Book Multiple Clubs on one page.</h2><p>It is becoming increasingly popular for a number of golf courses in a locality to collectively offer golf passes to visitors.</p><p class='align_center'><img src='assets/images/num_golf_courses.jpg' alt='golf courses' /><p></div>";
$image24="<div class='box'><h1>THANK YOU FOR WATCHING</h1><p>You can view the presentation again by selecting the right pointing arrow at the bottom of the screen or select a particular topic from the drop-down list at the top of the screen.</p><br /><p>You can download a PDF for members of your committee from the bottom toolbar or simply show them this presentation that runs on the internet.</p><br /><p>Our best regards<br /><em>The Manage Golf Team</em></p></div>";
jQuery(function($){
$.supersized({
slideshow:1,
autoplay:0,
start_slide:1,
random:0,
slide_interval:12000,
transition:1,
transition_speed:500,
new_window:1,
pause_hover:0,
keyboard_nav:1,
performance:1,
image_protect:1,
image_path:'img/',
min_width:0,
min_height:0,
vertical_center:1,
horizontal_center:1,
fit_portrait:1,
fit_landscape:0,
navigation:1,
thumbnail_navigation:1,
slide_counter:1,
slide_captions:1,
slides:[
{image:'assets/photos/photo_2.jpg',title:$image1},
{image:'assets/photos/photo_1.jpg',title:$image2},
{image:'assets/photos/photo_3.jpg',title:$image3},
{image:'assets/photos/photo_4.jpg',title:$image4},
{image:'assets/photos/photo_5.jpg',title:$image5},
{image:'assets/photos/photo_6.jpg',title:$image6},
{image:'assets/photos/photo_7.jpg',title:$image7},
{image:'assets/photos/photo_8.jpg',title:$image8},
{image:'assets/photos/photo_2.jpg',title:$image9},
{image:'assets/photos/photo_3.jpg',title:$image10},
{image:'assets/photos/photo_4.jpg',title:$image11},
{image:'assets/photos/photo_5.jpg',title:$image12},
{image:'assets/photos/photo_6.jpg',title:$image13},
{image:'assets/photos/photo_7.jpg',title:$image14},
{image:'assets/photos/photo_3.jpg',title:$image15},
{image:'assets/photos/photo_5.jpg',title:$image16},
{image:'assets/photos/photo_2.jpg',title:$image17},
{image:'assets/photos/photo_1.jpg',title:$image18},
{image:'assets/photos/photo_8.jpg',title:$image19},
{image:'assets/photos/photo_7.jpg',title:$image20},
{image:'assets/photos/photo_4.jpg',title:$image21},
{image:'assets/photos/photo_2.jpg',title:$image22},
{image:'assets/photos/photo_8.jpg',title:$image23},
{image:'assets/photos/photo_3.jpg',title:$image24}
]
});
});
$("#about").bind("click",function(){
$('#about_dialog').html("<div id='loading'></div>");
$("#about_dialog").bPopup({amsl:340,fadeSpeed:'slow',opacity:'0.92',modalColor:'black',scrollBar:false});
$('#about_dialog').load('includes/about_dialog.php',function(){
});
return false
});
$("#enquiry").bind("click",function(){
$('#enquiry_dialog').html("<div id='loading'></div>");
$("#enquiry_dialog").bPopup({amsl:400,fadeSpeed:'slow',opacity:'0.92',modalColor:'#000',scrollBar:false});
$('#enquiry_dialog').load('includes/enquiry_dialog.php',function(){
});
return false
});
$(function(){
$('.error').hide();
$("#submit").live("click",function(){
$('.error').hide();
var firstname=$("input#firstname").val();
if(firstname==""){
$("label#firstname_error").show();
$("input#firstname").focus();
return false;
}
var lastname=$("input#lastname").val();
if(lastname==""){
$("label#lastname_error").show();
$("input#lastname").focus();
return false;
}
var email=$("input#email").val();
if(email==""){
$("label#email_error").show();
$("input#email").focus();
return false;
}
if(!IsValidEmail(email)){
$("label#email_error").show();
$("input#email").focus();
return false;
}
var phone=$("input#phone").val();
if(phone==""){
$("label#phone_error").show();
$("input#phone").focus();
return false;
}
var golfclub=$("input#golfclub").val();
if(golfclub==""){
$("label#golfclub_error").show();
$("input#golfclub").focus();
return false;
}
var position=$("input#position").val();
if(position==""){
$("label#position_error").show();
$("input#position").focus();
return false;
}
var message=$("textarea#message").val();
var dataString='firstname='+firstname+'&lastname='+lastname+
'&email='+email+'&phone='+phone+'&golfclub='+golfclub+'&position='+position+'&message='+message;
$.ajax({
type:"POST",
url:"includes/process.php",
data:dataString,
success:function(){
$('#message').html("<br/><br /><br/><br /><br/><br /><br/><br /><br/><br /><h2 class='white'>Thank you for your enquiry!</h2><h3 class='orange'>You will be contacted shortly.</h3>")
$(".bClose").ready().delay(800);
}
});
return false;
function IsValidEmail(email){
var filter=/^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
return filter.test(email);
}
})
})
});
