jQuery(document).ready(function(){
	jQuery('.testdrive-box').hide();
	jQuery('.miscnavi-testdrive').toggle(function() {
		jQuery('.testdrive-box').show();
		jQuery('.contentright .fotogallery').css('margin-top','137px');
		if(jQuery.browser.msie){
		} else {
			window.getSelection().removeAllRanges();
		}
		jQuery('.testdrive-box a').mouseenter(function (){
			jQuery(this).css('background','url(fileadmin/images/bg.jpg) no-repeat 0 0 transparent');
		}).mouseleave(function (){
			jQuery(this).css('background','none');
		}).click(function(){
			window.location = jQuery(this).attr('href');
		});
	}, function() {
		jQuery('.contentright .fotogallery').css('margin-top','0px');
		jQuery('.testdrive-box').hide();
	});
});
