$(document).ready(function() {
	$('#intro').css('bottom',$(window).height()+155);
	
	$('#intro_line').width($(window).width()-348);
	if($(window).height() > $('#container').height()) {
		$('#container').height($(window).height()-20);
	}
	$(document).resize(function() {
		if($(document).height() > $('#container').height()) {
			$('#container').height($(document).height()-20);
		}		
	});
	
	$('#suchen').change(function() {
		document.location.href = '/?id=escorts&name='+document.getElementById('suchen').options[document.getElementById('suchen').selectedIndex].text;
	});
	
	$('#gal01').show('fast', function() {
		$('#container').height($(document).height()-20);
	});
	
	$('.gal_number a').each(function() {
		$(this).click(function() {
			$('.gallery_container').hide();
			$('#gal'+$(this).text()).show('fast');
		});
	});
	
});