$(document).ready(function(){
	
	$('#overLayer').mouseover(function() {
		w = $('#overLayer').width();
		if(w == '20') {	
			$(this).animate(
				{width:'350px'}, 
				'slow'
			);
			$.post('mod_rueckruf/kontaktform.ajax.php', {
				show: 'form',
			}, function(data) {
				$('#overLayer').html(data);
			});
		}
	});
	
	
	$.Lightbox.construct({
		"show_linkback": false,
		"download_link": false,	
		"opacity": 0.7,
		 "text": {
             // For translating
             "image":        "Bild",
             "of":           "von",
             "close":        "schliessen",
             "closeInfo":    "",
             "download":     "",
             "help": {
                 "close":    "",
                 "interact": ""
             },
			 "about": {
				 "text":     "jQuery Lightbox Plugin (balupton edition)",
				 "title":    "Licenced under the GNU Affero General Public License.",
				 "link":     "http://www.balupton.com/projects/jquery-lightbox"
			 }
		 }
	});
	
	
});


function closeLayer() {
	w = $('#overLayer').width();
	if(w > '20') {	
		$('#overLayer').animate(
			{width:'20px'}, 
			'fast'
		);
		$('#overLayer').html('&nbsp;');
	}
}

