$(function(){

//*************************************************************//
// FEATURE IMAGE CAROUSEL 
//*************************************************************//	
	$(".feature-image-carousel").jCarouselLite({
		auto: 7000,
		speed: 700,
		visible: 1
	});

//*************************************************************//
// VIEW FLYER
//*************************************************************//
 	$("#view-all-flyers").hover(
      function () {
       $(this).css("cursor", "pointer");
       $(this).css("text-decoration", "underline");
      }, 
      function () {
        $(this).css("cursor", "auto");
        $(this).css("text-decoration", "none;");
      }
    );
    
	$("#hide-all-flyers").hover(
      function () {
       $(this).css("cursor", "pointer");
       $(this).css("text-decoration", "underline");
      }, 
      function () {
        $(this).css("cursor", "auto");
        $(this).css("text-decoration", "none;");
      }
    );
    
    $("div.view-flyer-button img").hover(
      function () {
       $(this).css("cursor", "pointer");
      }, 
      function () {
        $(this).css("cursor", "auto");
      }
    );

	$('#view-all-flyers').click(function(){
		$('div.view-flyer-artwork').show();
		$('div.view-flyer-artist').show();
	});
	
	
	$('#hide-all-flyers').click(function(){
		$('div.view-flyer-artwork').hide();
		$('div.view-flyer-artist').hide();
	});

	jQuery('div.view-flyer').Accordion({ 
		header: 'div.view-flyer-button', 
		active: false, 
		alwaysOpen: false
	});
	
	
});