/*

	===========================================================

	Custom Wordpress Theme - UI Effects - "Crunch.js"

	Author: Anchor Wave Internet Solutions, Anchorwave.com

	===========================================================

	Description: jQuery function initialization.

	===========================================================

*/



jQuery(function( $ ){	

$('div .frame').hover(
  function () {
    $('div', this).css('display', 'block');
  },
  function () {
    $('div', this).css('display', 'none');
  }
);



})


