/*	CSS Document 
 *	Author: Tashreek Jackson
 *	Overview: jQuery Functions.	
*/

$(document).ready(function() {
	// Image Rollover Captions
	$("span.desc").hide()
	$(".clothing_item a").hover(
	  function () {
		$(this).find("span.desc").show()
	  }, 
	  function () {
		$(this).find("span.desc").hide()
	  }
	);
	
	// find all the input elements with title attributes
        $('input[title],textarea[title]').inputHint();
	
	
	$('.slideshow').cycle({ 
		fx:     'fade',
                speed:   2000,
		timeout: 4000
	});



});
