$(document).ready(function()
{
	 jQuery(document).ready(function($) {
      $('a[rel*=facebox]').facebox()
    })


	$(".clearinput").click(function () { 
      $(this).val("");
    });

	$(".expand").hover(
      function () {
        $(this).children().next().css("display", "block");
      }, 
      function () {
        $(this).children().next().css("display", "none");
      }
    );

});
 
