$(function() {
// OPACITY OF BUTTON SET TO 100%
$(".latestimg").css("opacity","1.0");
 
// ON MOUSE OVER
$(".latestimg").hover(function () {
 
// SET OPACITY TO 50%
$(this).stop().animate({
opacity: 0.5
}, "slow");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
});
});





$(function() {
// OPACITY OF BUTTON SET TO 100%
$(".latestimgprint").css("opacity","1.0");
 
// ON MOUSE OVER
$(".latestimgprint").hover(function () {
 
// SET OPACITY TO 40%
$(this).stop().animate({
opacity: 0.4
}, "slow");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
});
});






$(function() {
// OPACITY OF BUTTON SET TO 100%
$(".latestimgweb").css("opacity","1.0");
 
// ON MOUSE OVER
$(".latestimgweb").hover(function () {
 
// SET OPACITY TO 70%
$(this).stop().animate({
opacity: 0.7
}, "slow");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
});
});




$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".latestimglogo").css("opacity","0.2");
 
// ON MOUSE OVER
$(".latestimglogo").hover(function () {
 
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.5
}, "slow");
});
});



$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".latestimgintor").css("opacity","1.0");
 
// ON MOUSE OVER
$(".latestimgintro").hover(function () {
 
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 0
}, "slow");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 1.0
}, "slow");
});
});






$(function() {
// OPACITY OF BUTTON SET TO 100%
$(".latestimgfctitle").css("opacity","1.0");
 
// ON MOUSE OVER
$(".latestimgfctitle").hover(function () {
 
// SET OPACITY TO 70%
$(this).stop().animate({
opacity: 0.5
}, "slow");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
});
});



$(function() {
// OPACITY OF BUTTON SET TO 100%
$(".latestimgfclink").css("opacity","1.0");
 
// ON MOUSE OVER
$(".latestimgfclink").hover(function () {
 
// SET OPACITY TO 70%
$(this).stop().animate({
opacity: 0.6
}, "slow");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
});
});



$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".latestimgfeat").css("opacity","0.1");
 
// ON MOUSE OVER
$(".latestimgfeat").hover(function () {
 
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "slow");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.1
}, "slow");
});
});



$(function(){
    $('.fadein img:gt(0)').hide();
    setInterval(function(){
      $('.fadein :first-child').fadeOut()
         .next('img').fadeIn()
         .end().appendTo('.fadein');}, 
      7000);
});
