/* Start Home Carousel, Portfolio Image Hover Effect, Pretty Photo, Text Overflow */
jQuery(document).ready(function() {
  /* the carousel */
  $('.portfolio-carousel').infiniteCarousel();
  /* portfolio image effect */
  $("img.a").hover(
  function() {  $(this).stop().animate({"opacity": "0.4"}, "slow");  },
  function() {  $(this).stop().animate({"opacity": "1"}, "slow");  });
  $("img.pthumb").hover(
  function() {  $(this).stop().animate({"opacity": "0.4"}, "slow");  },
  function() {  $(this).stop().animate({"opacity": "1"}, "slow");  });
  /* pretty photo responds on rel='prettyPhoto' */
  $("a[rel^='prettyPhoto']").prettyPhoto();
  /* truncate some text make it look nice*/
//  $('.portfolio-carousel-item .text h4').textOverflow({"lines":1, "ellipsis":"..."});
//  $('.portfolio-carousel-item .text p').textOverflow({"lines":2, "ellipsis":"..."});
});
