// JavaScript Document

$(function(){
	$("body").snappyPlaceholder();
	if($("form.validate").length) $("form.validate").each(function(){ $(this).validate() });
	if($("li.suckerfish").length) {
		$("li.suckerfish").bind('mouseenter',function(){
			$(this).addClass('active');										 
		}).bind('mouseleave',function(){
			$(this).removeClass('active');	
		});	
	}
});
