$(document).ready(function() {
	//select all the a tag with name equal to modal
	//$('a[name=modal]').click(function(e) {
           // alert('s');
              //  e.preventDefault();
		//Get the A tag
		var id = $('a[name=modal]').attr('href');
		//Get the screen height and width
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
		//Set heigth and width to mask to fill up the whole screen
		$('#mask').css({'width':maskWidth,'height':maskHeight});
		//transition effect
		$('#mask').fadeIn(0);
		$('#mask').fadeTo("slow",0.5);
               // alert(id);
		//Get the window height and width
		var winH = $(window).height();
		var winW = $(window).width();

		//Set the popup window to center
		$('div.form').css('top',100);
		$('div.form').css('left',maskWidth/2-$('div.form').width()/2);

		//transition effect
		$('div.form').fadeIn(0);
               // $('div#loading').addClass('preload');
                          //############################################################
        //############################################################

	//});


	//if close button is clicked
	
//    if($('input:radio').attr('checked',true).val()=='yes'){
//    $('#list-q-hidden').show();
//    }else{
//    $('#list-q-hidden').hide();
//    }

$('input:radio').change(function(){
   if($(this).attr('value')=='yes'){
       $('#list-q-hidden').show();
   }else{
       $('#list-q-hidden').hide();
   }
});
	
});
