/* script to handle the sms subscribe feature */

$(document).ready(function(){
	/*$("#subscribeBox").shadow({
       width:5,
       startOpacity:60,
       endOpacity:10,
       cornerHeight:8,
       color:"#000"
   });*/
	
	$(".sms").click(function() { 
		//alert('hello');
		$("#subscribeBox").toggle();
		return false;
	}); 
	
	$(".close").click(function() { 
		//alert('hello');
		$("#subscribeBox").toggle();
		return false;
	}); 
});
