/*$(function() {
    $(".carousel").jCarouselLite({
        btnNext: ".next1",
        btnPrev: ".prev1",
		visible: 6,
		auto: 800,
		speed: 1000
    });
});*/

$(document).ready(function(){
	$('#main_feature').cycle({ 
    //fx:     'turnDown', 
    //speed:  'slow', 
    //timeout: 0, 
    pager:  '#nav',
	pagerAnchorBuilder: function(idx,slide) { return '#nav a:eq(' + (idx) + ')'; }
});

$("img.a, img.a1").hover(
	function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
		},
	function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
	});
	/*
	  $('a.nudge').hover(function() { //mouse in
		$(this).animate({ paddingLeft: '10px' }, 400);
			}, function() { //mouse out
		$(this).animate({ paddingLeft: 0 }, 400);
	  }); */
	
});

 






     

