$(document).ready(function() {	
	
	var heights = new Array();
	
	$('#send').click(function() {
		$(this).parents('form').submit();
	});
	
	$('#send').css('cursor', 'pointer');
	
	$('input[type="checkbox"], input[type="radio"]').css('width', 'auto').css('border', 'none').css('background', 'none');
	
	$('#nav a img, #subnav a img').hover(
		function() {
			if($(this).attr('src').indexOf('_hl.gif') == -1) {
				$(this).attr('src', $(this).attr('src').replace(/.gif/g, '_hl.gif'));
			}
		},
		
		function() {
			if($(this).attr('src').indexOf('_hl.gif') > 0 && !$(this).parent('a').hasClass('active')) {
				$(this).attr('src', $(this).attr('src').replace(/_hl.gif/g, '.gif'));
			}
		}
	);
		
	if($('#nav a.active img').attr('src') != null) {
		if($('#nav a.active img').attr('src').indexOf('papiere') > 0) {
			$('#subnav').css('text-align', 'right');	
		}
	
		if($('#nav a.active img').attr('src').indexOf('service') > 0) {
			$('#subnav').css('padding-left', '156px');	
		}
		
		if($('#nav a.active img').attr('src').indexOf('kontakt') > 0) {
			$('#subnav').css('padding-left', '424px');
		}
		
		if($('#nav a.active img').attr('src')) {
			$('#nav a.active img').attr('src', $('#nav a.active img').attr('src').replace(/.gif/g, '_hl.gif'));
		}
		
		if($('#subnav a.active img').attr('src')) {
			$('#subnav a.active img').attr('src', $('#subnav a.active img').attr('src').replace(/.gif/g, '_hl.gif'));
		}
	}
	
	$('.papers .col .smallbox table .right, .papers .col .bigbox table .papers').each(function() {
		heights.push($(this).height());
	});
	
	heights.sort();
		
	$('.papers .col .smallbox table .right, .papers .col .bigbox table .papers').css('height', heights[heights.length - 1] + 'px');
});