//sabbe satta bhavantu sukhitatta
$(
	function()
	{
		$("#lma_in_the_media_filter_type").change(
			function()
			{
				window.location.href = $(this).val();
			}
		);
		var lmc_img_width = 191;
		var lmc_img_height = 142;
		var w, h, new_w, new_h,r;
		$('.lma-in-the-media-image-container a img').each
		(
			function()
			{
				w = $(this).width();
				h = $(this).height();
				if( w > h )
				{
					r = w / lmc_img_width;
					new_h = h / r;
					new_w = lmc_img_width;
				}
				else
				{
					r = h / lmc_img_height;
					new_w = w / r;
					new_h = lmc_img_height;
				}
				
				$(this).width(new_w);
				$(this).height(new_h);
				$(this).show();
				
			}
		);
		///height="142" width="191"
	}	
	
);
