$(document).ready(function () {	$.fn.closeAll = function()	{			$(".showhide").attr({			style: 'height:0px;',			height: 0		});				$(".showhide img").attr({			style: 'height:0px;',			height: 0		});	}	$.fn.loadandshow = function (img_id, plate_id, plate_name) {				$.ajax({			type: 'post',			url: 'index.php?route=product/searchnumberplates/callback',			dataType: 'html',			data: 'img_id=' + img_id+"&name="+plate_name,									success: function (html)			{				$('#imgdiv_' + plate_id).html(html);			},										complete: function ()			{											var newHeight = 600;				var newHeightAttr = 1;								if ($('#imgdiv_'+plate_id).attr('height') > 0)				{					newHeight = 0;					newHeightAttr = 0;				}								$('#imgdiv_'+plate_id).attr({					style: 'height:' + newHeight +'px; margin-top:2px;',					height: newHeightAttr				});								$('#imgdiv_'+plate_id+' img').attr({					style: 'height:' + newHeight + 'px; margin-top:2px;'				});							}		});			}});