
jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  { 
  
  
    jQuery("<img>").attr("src", arguments[i]);
  }
}

function showajaxcontent (url,divid) { 

$('#'+divid).fadeOut('slow', function() {
	
$('#'+divid).html('<img src="http://www.lgr-sunglasses.com/pics/ajax-loader.gif" />');

$.ajax({
  type: "GET",
  
  url: url,
  dataType: "html",
  success: function(htmlcontent){
	  
	  
	  $('#'+divid).html('');
      $('#'+divid).append(htmlcontent);
$('#'+divid).fadeIn('slow');
      },
	  
	  error: function(textStatus, errorThrown){
	alert(textStatus+': '+errorThrown);


     
	  $('#'+divid).html('');
      $('#'+divid).append(textStatus);

      }

});
});	
}


