$(document).ready(function() {
        $("a.example1").fancybox({
        'titleShow'     : true,
        'transitionIn'  : 'none',
        'transitionOut' : 'none',
        'easingIn'      : 'none',
        'easingOut'     : 'none',
        'overlayShow'    : true, 
        'overlayOpacity' : 0.5, 
        'overlayColor'   :'#666' 
       // 'hideOnContentClick': true
});
 
//dealers
    $(".iframe").fancybox({
        'width'          : '85%',
        'height'          : '85%',
        'autoScale'     : false,
        'transitionIn'  : 'none',
        'transitionOut' : 'none',
        'type'          : 'iframe',
        'overlayShow'   : true, 
        'overlayOpacity': 0.5, 
        'overlayColor'  :'#666' 
    });
 
 
//votes
    $(".iframe_vote").fancybox({
    'width'        : '30%',
    'height'             : '50%',
         'autoScale'        : false,
         'transitionIn'    : 'none',
    'transitionOut'    : 'none',
    'type'        : 'iframe'
    });
 
    $(".game").fancybox({
    'width'        : '100%',
    'height'             : '100%',
         'autoScale'        : true,
         'transitionIn'    : 'none',
    'transitionOut'    : 'none',
    'type'        : 'iframe'
         });
});
// tabels
$(document).ready(function() {
         $(".dealerlist tr:odd").css("background-color", "#eeeeee");
         $(".dealerlist tr:even").css("background-color", "#fff");
         $(".tekniset_tiedot tr:odd").css("background-color", "#eee");
         $(".tekniset_tiedot tr:even").css("background-color", "#fff");
 
}); 

