$(document).ready(function() {
        $("a.example1").fancybox({
        'titleShow'     : true,
        'transitionIn'  : 'none',
        'transitionOut' : 'none',
        'easingIn'      : 'none',
        'easingOut'     : 'none',
        'overlayShow'    : true, 
        'overlayOpacity' : 0.7, 
        'overlayColor'   :'#3e588e' 
       // 'hideOnContentClick': true
});

//dealers
	$(".iframe").fancybox({
        'width'	      : '85%',
        'height'	      : '85%',
        'autoScale'     : false,
        'transitionIn'  : 'none',
        'transitionOut' : 'none',
        'type'	      : 'iframe',
        'overlayShow'   : true, 
        'overlayOpacity': 0.7, 
        'overlayColor'  :'#3e588e' 
	});


//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() {
         $("table.dealerlist tr:odd").css("background-color", "#d2dde4");
         $("table.dealerlist tr:even").css("background-color", "#c2d3df");
         $("table.dealerlist tr:hover").css("background-color", "#c2d3df");
         $("table.mallit tr:odd").css("background-color", "#d2dde4");
         $("table.mallit tr:even").css("background-color", "#c2d3df");
         $(".tekniset_tiedot tr:odd").css("background-color", "#eee");
         $(".tekniset_tiedot tr:even").css("background-color", "#fff");
}); 


