// JavaScript Document
$(document).ready(function(){
		var siteurl1=$('#siteurl1').html();
		var siteurl2=$('#siteurl2').html();
		
		 $('#gallery a').lightBox();
		
	
		
});

function showImg(target0){
			$(target0).animate({width: '100%', height:1500,padding:'0 0 0 0'}, 1000); 	
}

function closeImg(target0){
			$(target0).animate({width: 0, height:0,padding:'0 0 0 0'}, 1000);
}

function showloader(){
	$('#contactconf').fadeIn("slow",function(){
											 $('#contactconf').html('sending information ...');
											 });
	}
function closeloader(){
	$('#contactconf').fadeOut("slow",function(){
											 $('#contactconf').html('');
											 });
	}
function showMsg(target,msg){
	var siteurl1=$('#siteurl1').html();
	msg=msg+'<br/><img src="'+siteurl1+'ui/themes/images/public/button-0.png" onclick="closeloader()">';
	$(target).html(msg);
	}
