// init.js
$(function(){
	$('a.dot').stop().hover(function(){
			var txt = $(this).find('span').html();
			$('#description').html(txt)
			$(this).find('.standard').fadeOut(300);
			$(this).find('.hover').fadeIn(300, function(){
				
				$('#description').fadeIn(300);	
			});
		
		}, function(){
			$(this).find('.hover').fadeOut(300);
			$(this).find('.standard').fadeIn(300);
			$('#description').fadeOut(300);	
		})	
        
    //Carlist init
    
    $('.carList tbody tr').click(function(){
        window.location = $(this).attr('rel');
    })
    
    //Bilder vergrößern
    $('a.lightBox').lightBox({
            imageLoading:			'wp-content/themes/autowalther/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'wp-content/themes/autowalther/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			'wp-content/themes/autowalther/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			'wp-content/themes/autowalther/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				'wp-content/themes/autowalther/images/lightbox-blank.gif'			// (string) Path and the name of a blank image (one pixel)
    });

})





