$(document).ready(function(){
  $("label").inFieldLabels();
  $("a.fancybox").fancybox({
	'hideOnContentClick': true, 
	'transitionIn': 'elastic', 
	'transitionOut': 'elastic', 
	'centerOnScroll' : true,
	'opacity' : true,
	'padding' : 0,
	'overlayOpacity'	: 0.6,
	'overlayColor'		: '#111',
	'titleShow' : false
  });
});

function subscribe() {
var yournameid = document.getElementById('yourname');
var youremailid = document.getElementById('youremail');
if (yournameid.value != '' && youremailid.value != '') {
$.fancybox({ 
'width'			: 650,
'height'		: 360,
'padding'		: 0,
'centerOnScroll'	: true,
'overlayOpacity'	: 0.3,
'overlayColor'		: '#111',
'opacity'		: true,
'autoScale'		: false,
'transitionIn'		: 'elastic',
'transitionOut'		: 'elastic',
'href'		: '/js/createsend/Subscriber.Add.php?name='+yournameid.value+'&email='+youremailid.value,
'type'			: 'iframe'
});
} else {
alert('Please enter a valid name and email.');
}
}


