/*
* JS written by Eddie Kennedy in 2011.
* sharksarenojoke.com
*/

$(document).ready(function() {
	
	$('a.thumb').hover(
	  function() {
		$('<div class="checkit"></div>').appendTo($(this)).fadeIn('fast');
	  }, 
	  function() {
	    $(this).find("div.checkit").remove();
	  }
	);
	
	$('a.thumb').colorbox({'opacity':0.5});
	
	
	
	
});
