/*jQuery(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
  jQuery('#qcontact').hide();

 // toggles the slickbox on clicking the noted link
  jQuery('a#qcontact').click(function() {
	jQuery('#qcontact').slideToggle(400);
	return false;
  });
});
*/

$(document).ready(function() {
	$('#qcontact').hide();

  $('#qtoggle').click(function() {
    $('#qcontact').toggle(400);
    return false;
  });

  $('#qclose').click(function() {
    $('#qcontact').hide(400);
    return false;
  });	


});

