$(document).ready(function(){ 
	jQuery(function(){
	 jQuery('ul.sf-menu').superfish();
	 });

 $('a.plc_contact_abstract').click(function() {
    var panel = $('div.plc-contactwrapper');
    if (!parseInt(panel.css('left'))) {
      panel.animate({'left': -570},$.plcAnimationSpeed);
    } else {
      panel.animate({'left': 0},$.plcAnimationSpeed);
    }

    return false;
  });
});
