
$(document).ready(function() {
	$(".datepicker").datepicker({ dateFormat: 'DD d MM yy', minDate: '-6M -0D', maxDate: '+12M +0D' });
});
Shadowbox.init({
    // let's skip the automatic setup because we don't have any
    // properly configured link elements on the page
    enableKeys: false,
	skipSetup: true
	
});

function openPopup(){
  	var emailAddress = $("#subscribeField").val();
  	
	if(emailAddress == "" || emailAddress == "Enter email to subscribe"){
		emailAddress = "";
	} 
	Shadowbox.open({
        content:    '<div class="subscribeform"><h1 style="font-family:Georgia, \'Times New Roman\', Times, serif; font-weight-normal;">SIGN UP TO THE NUDGE</h1><p style="font-size:1.3em; padding-bottom:8px; padding-top:8px;">A witty and eclectic tri-weekly guide to the best of what\'s new in London</p><form action="register.php" method="post"><p><label>Email Address *</label><input name="user_email" type="text" style="width:170px;" value="'+emailAddress+'" /></p><p><label>Password * <br /><span style="color:#2697AC;text-transform:lowercase">minimum 5 characters</span></label><input name="user_password" type="password"  style="float: left; width:170px;" /></p><div class="clear"></div><p><label>Confirm Password</label><input name="passwordconfirm" type="password" style="width:170px;" /></p><div class="clear"></div><div class="clear"></div><input type="checkbox" checked="checked" name="city[]" value="1" style="display:none;" /><p><label style="height:30px;">&nbsp;</label><input name="acceptTerms" type="checkbox" />Check here to indicate that you have read and agree to the <a target="_blank" href="/terms.php">Terms &amp; Conditions</a>.</p><p><label>&nbsp;</label><input name="Register" type="image" src="images/layout/btn_register_join.jpg" /></p></div>',
		player :	'html',
        height:     400,
        width:      500
    });
	
	//window.open('http://www.thenudge.com/subscribeform.php?email='+emailAddress','sharer','toolbar=0,status=0,width=626,height=436'); 
}


function changePage(url){
	if(url != '0'){
		window.location = "http://thenudge.com/editions/"+url;
	}
}

function fbs_click() {
u=location.href;
t=document.title;
window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436'); 
return false;
}

function mycarousel_initCallback(carousel)
{
    // Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
        carousel.startAuto(0);
    });

    carousel.buttonPrev.bind('click', function() {
        carousel.startAuto(0);
    });

};

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        //auto: 4,
		scroll: 1,
        wrap: 'last',
        initCallback: mycarousel_initCallback
    });
});



