﻿    $(document).ready(function() {
        $('.viewport p').mouseenter(function(e) {
            $(this).children('a').children('img').animate({ height: '175', left: '-25', top: '-18', width: '250'}, 100);
            $(this).children('a').children('span').fadeIn(200);
        }).mouseleave(function(e) {
            $(this).children('a').children('img').animate({ height: '140', left: '0', top: '0', width: '200'}, 100);
            $(this).children('a').children('span').fadeOut(200);
        });
    });
	  

	  $('.viewport').hover(function() {
      $(this).addClass('pretty-hover');
    }, function() {
      $(this).removeClass('pretty-hover');
    });
	 
