(function($) {
$(document).ready(function() {
  $(".dropdown_box").click(function() {    
    var boxId = $(this).attr('rel');
    var pos = $(this).position();
    var hei = $(this).height();
var wid = $('#'+boxId).width();
var totwid=0;
var posleft =0;
var tops = pos.top + hei-90;
if(tops<0) {
tops = pos.top + hei
}
totwid = pos.left +wid
if ( totwid>850) {
	posleft = 850-wid;
} else{
	posleft=pos.left;
}
  $('#'+boxId).css({
    'height': 'auto',
    'left' : posleft +'px',
    'top' : tops + 'px',
    'position' : 'absolute'});
    return false;
  }); 
}); 
})(jQuery);

