{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350
{\fonttbl\f0\fmodern\fcharset0 Courier;}
{\colortbl;\red255\green255\blue255;}
\margl1440\margr1440\vieww9000\viewh8400\viewkind0
\deftab720
\pard\pardeftab720\ql\qnatural

\f0\fs24 \cf0 $(document).ready(function() \{\
\
	$("ul.gallery li .webdesign-block").hover(function() \{ //On hover...\
\
		var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'\
\
		//Set a background image(thumbOver) on the <a> tag - Set position to bottom\
		$(this).find("a.thumb").css(\{'background' : 'url(' + thumbOver + ') no-repeat center bottom'\});\
\
		//Animate the image to 0 opacity (fade it out)\
		$(this).find("span").stop().fadeTo('slow', 0 , function() \{\
			$(this).hide() //Hide the image after fade\
		\});\
	\} , function() \{ //on hover out...\
		//Fade the image to full opacity \
		$(this).find("span").stop().fadeTo('slow', 1).show();\
	\});\
\
\});\
}
