	/* Dropdown menu using superfish */
	jQuery('.topmenu').supersubs({
		minWidth: 12,
		maxWidth: 25,
		extraWidth: 1
	}).superfish({
		delay: 1000,
		animation: { opacity: 'show', height: 'show' },
		speed: 'fast',
		autoArrows: false 
	})
	.find('ul')
	.bgIframe({ 
		opacity: false 
	});

/* Modal stuff */

/* to call inline */
//$().ready(function() {
//  $('#dialog').jqm();
//});

/* Call ajax */
$().ready(function() {
  $('#ex2').jqm({ajax: 'qc-modal', trigger: 'a.ex2trigger' });
        $('#ex2').jqm({
      	onShow: open,
      	onHide: close});
});

// onHide : fade the window out, kill overlay after fade.
var close=function(hash) { hash.w.fadeOut('2000',function(){ hash.o.remove(); }); };
var open=function(hash) {hash.w.fadeIn('2000') };

	  
// Form submission
/*function submit_form(){
    // disable the submit button
    $('#submitbutton').attr("disabled", true);  
    // get the field values
    var Qname = $("input#Qname").val();
    var Qtelephone = $("input#Qtelephone").val();
    var Qpreferred = $("input#Qpreferred").val();
    
    // load the eform results
    $('#ex2').load('index.php?id=106', {'Qname':Qname, 'Qtelephone':Qtelephone, 'Qpreferred':Qpreferred, 'formid':'QuickContact'});    
}
   */
