$(document).ready(function (){
    
        $("div.scrollable").scrollable({ 
            vertical:true
        });        
        
    
    $(".slideTabs").tabs("#featurePanels .items > div", {
        effect: 'fade',
        rotate: true
    }).slideshow({autoplay: true, interval: 6500, clickable: false});
       
    setPopUp();
    
    $('#regBtn').click(function() {
        var email = $('#regField').val();
        window.location.href = "http://www.jacksons-fencing.co.uk/pages/users/registration.aspx?email=" + email;
    });
    
    $('#regField').bind('keyup', function(e) {
	    if(e.keyCode==13){
		    var email = $('#regField').val();
            window.location.href = "http://www.jacksons-fencing.co.uk/pages/users/registration.aspx?email=" + email;
	    }
	});
    
});
