/*$(document).ready(function() {

$("#premium").toggle(function(){
							  
	//this.checked = !this.checked;
     $("#premiumdiv").hide('fast');
	 $("#premium").removeAttr("checked");
   },function(){
     $("#premiumdiv").show('slow');
	 $("#premium").attr("checked", "checked");
   });

});*/

/*$(document).ready(function() {
					
$("#premium").toggle(function(){
     $("#premiumdiv").css({display:"none"});
   },function(){
     $("#premiumdiv").css({display:"block"});
   });

});*/
		 
		 

function onoff () {
  	if (document.getElementById) {
		if (document.getElementById("premiumdiv").style.display == "block") {
			document.getElementById("premiumdiv").style.display = "none";
		} else {
			document.getElementById("premiumdiv").style.display = "block";
		}
	}
}

