
// w500 slideshow
$(document).ready(function() {
  $('.slideshow')
  .after('<div class="slider-nav">')
  .cycle({
	fx: 'fade',
	timeout: 0,
	speedIn:  700,
  speedOut: 705,
	prev:   '#prev1',
  next:   '.slideshow, #next1',
  delay: 0,
  pause: 'true',
  pauseOnPagerHover: 'true',
  pager:  '.slider-nav'
});
  
	
	

   
$('.logo')
  .animate( { opacity: '1.0' }, 1000)
});


$(document).ready(function(){		
  $(".products li a").hover(function(){
  	$(this).children(".entry-image").fadeTo("fast", 0); // This should set the opacity to 0% on hover
  	$(this).children(".entry-info").fadeTo("fast", 1.0);

  	},function(){
  	$(this).children(".entry-image").fadeTo("fast", 1.0); // This should set the opacity back to 100% on mouseout
  	$(this).children(".entry-info").fadeTo("fast", 0);
  });

  $(".page-template-about-php .featured .entry-content .w200 a").hover(function(){
  	$(this).children(".entry-image").fadeTo("fast", 0); // This should set the opacity to 0% on hover
  	$(this).children(".entry-info").fadeTo("fast", 1.0);

  	},function(){
  	$(this).children(".entry-image").fadeTo("fast", 1.0); // This should set the opacity back to 100% on mouseout
  	$(this).children(".entry-info").fadeTo("fast", 0);
	
  });
});



// For Galleria JS
// jQuery(function($) {
//  $('ul.gallery')
//  .galleria(); 
// });





