
function showmegal(galnom, langmain) {

	
	$.post('gals.php', {galnom: galnom, langmain:langmain, galSubmitted: "yes"}, function(data) {        
		$('#showcase').html(data).fadeIn('550');
		
		}, 'text');
	
	var t=setTimeout("$('#mcs5_container').mCustomScrollbar('horizontal',500,'easeOutCirc',1,'fixed','yes','yes',20);",1800);

	var r=setTimeout("resizeCont()",1400);
	
}


function showimg(imgto) {		
		
	
	$("#showbox img").attr('src',imgto).fadeIn('100');

	resizeCont();

}

function resizeCont() {
	
	var img = $("#showbox img")[0]; // Get my img elem
	var pic_real_width, pic_real_height;
	
	$("<img/>")
    .attr("src", $(img).attr("src"))
    .load(function() {
		if (this.height > 400){
			$("#showbox").animate({
				height:"467px",
				width:"310px",
				top:"181",
				left:"410"
			},300);
			$("#textgal").animate({
				width:"238px",
				top:"210",
				left:"80"
			},100);
		}
		else {
				$("#showbox").animate({
				height:"314px",
				width:"720px",
				top:"181",
				left:"70"
			},300);
			$("#textgal").animate({
				width:"710px",
				top:"505",
				left:"70"
			},100);
		}
    });


}

function turnoff() {
	$('#showcase').fadeOut('100');
}
