// JavaScript Document
$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $(".aa").css({width:"50%", inline:true, href:"#aa"});
 // shows the slickbox on hovering the noted link
  
  $('a.show').click(function() {
 $('#buyers_hidden').show('slow'); 
 return false;
  });
  
    $('img.btnleft, img.btnright, a.close').click(function() {
 $('#buyers_hidden').hide('fast'); 
 return false;
  });
	
	 $('a.show').click(function() {
 $('#sellers_hidden').show('slow'); 
 return false;
  });
  
    $('img.btnleft, img.btnright, a.close').click(function() {
 $('#sellers_hidden').hide('fast'); 
 return false;
  });
	 
$('a.lf').click(function() {
 $('#lfform').show('fast'); 
 return false;
  });
  
});


