// jCarousel
$(document).ready(function(){
    $(".carousel").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 6,
		scroll: 2
    });
});


// Image Magnifying Glass / Image Hovers
$(document).ready(function(){
//<![CDATA[
$(".mag a").append("<span></span>");
//]]>
$(".mag img").hover(function(){
$(this).fadeTo(150, 0.65); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo(150, 1.0); // This should set the opacity back to 60% on mouseout
});

$(".mag_blog img").hover(function(){
$(this).fadeTo(250, 0.90); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo(150, 1.0); // This should set the opacity back to 60% on mouseout
});

$("span.more, .fade, .button_header").hover(function(){
$(this).fadeTo(150, 0.70); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo(150, 1.0); // This should set the opacity back to 60% on mouseout
});

$(".thumblist li img, div.carousel li").hover(function(){
$(this).fadeTo(150, 0.80); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo(150, 1.0); // This should set the opacity back to 60% on mouseout
});

});



