$(document).ready(function() {



/* clear form */

clearInput('#findfield');

clearInput('.email');



$('.videothumb').bind('mouseenter', function() {

$(this).children('.playit').children('a').fadeTo('fast', 0.50);

$(this).children('.playit').children('a').show();

return false;

});



$('.videothumb').bind('mouseleave', function() {

$(this).children('.playit').children('a').hide();

return false;

});



/* fire zoom functions */

$("a.single_image").fancybox({

	'zoomSpeedIn': 300,

	'zoomSpeedOut': 300

});



});