//sabbe satta bhavantu sukhitatta
$(
	function()
	{
		$("#lma_media_center_filter_type").change(
			function()
			{
				window.location.href = $(this).val();
			}
		);
		
		
		$(".lma-video-link").fancybox({
			'width'				: '100%',
			'height'			: '100%',
			'autoScale'			: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});
		
		$(".lma-image-link").fancybox({
			'autoScale'			: true
		});
		
		$(".lma-audio-link").fancybox({
			'width'				: '100%',
			'height'			: '100%',
			'autoScale'			: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});		
		

		var lmc_img_width = 191;
		var lmc_img_height = 142;
		var w, h, new_w, new_h,r;
		$('.lma-media-center-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();
				
			}
		);

	}	
		
);
