$(document).ready(function() {
        $("a.example1").fancybox({
        'titleShow'     : true,
        'transitionIn'  : 'none',
        'transitionOut' : 'none',
        'easingIn'      : 'none',
        'easingOut'     : 'none',
        'overlayShow'    : true, 
        'overlayOpacity' : 0.7, 
        'overlayColor'  :'#2e2e2e' 
       // 'hideOnContentClick': true
});

//dealers
	$(".iframe").fancybox({
        'width'	      : '85%',
        'height'	      : '85%',
        'autoScale'     : false,
        'transitionIn'  : 'none',
        'transitionOut' : 'none',
        'type'	      : 'iframe',
        'overlayShow'   : true, 
        'overlayOpacity': 0.7, 
        'overlayColor'  :'#2e2e2e' 
	});
});
// tabels
$(document).ready(function() {
         $(".dealerlist tr:odd").css("background-color", "#eee");
         $(".dealerlist tr:even").css("background-color", "#fff");
         $(".tekniset_tiedot tr:odd").css("background-color", "#eee");
         $(".tekniset_tiedot tr:even").css("background-color", "#fff");

}); 


