$(document).ready(function() {
    $('.th2,.th4,.th6,.th7,.th9,.th11').cycle({fx: 'fade'});
	$('.th2_hover,.th4_hover,.th6_hover,.th7_hover,.th9_hover,.th11_hover,.btnnexthide,.btnprev').hide();

$('.th2').mouseover(function() {$('.th2').hide();$('.th2_hover').show();});
$('.th2_hover').mouseout(function() {$('.th2_hover').hide();$('.th2').show();});

$('.th4').mouseover(function() {$('.th4').hide();$('.th4_hover').show();});
$('.th4_hover').mouseout(function() {$('.th4_hover').hide();$('.th4').show();});

$('.th6').mouseover(function() {$('.th6').hide();$('.th6_hover').show();});
$('.th6_hover').mouseout(function() {$('.th6_hover').hide();$('.th6').show();});

$('.th7').mouseover(function() {$('.th7').hide();$('.th7_hover').show();});
$('.th7_hover').mouseout(function() {$('.th7_hover').hide();$('.th7').show();});

$('.th9').mouseover(function() {$('.th9').hide();$('.th9_hover').show();});
$('.th9_hover').mouseout(function() {$('.th9_hover').hide();$('.th9').show();});

$('.th11').mouseover(function() {$('.th11').hide();$('.th11_hover').show();});
$('.th11_hover').mouseout(function() {$('.th11_hover').hide();$('.th11').show();});

$(this).bind("contextmenu", function(e) {
e.preventDefault();
});

});//document end
