$(document).ready(function(){

	$('#plus').hover(function() {
		$('#plusHidden').show();
	},function(){
		$('#plusHidden').hide();
	});
	$('#scrollerInner').cycle({
		fx: 'fade'
//		width:681,
//		height:400,
//		navigation:false,
//		effect:'rain',
//		hoverPause: true
	});
	$('.featuredProd').hover(function() {
		$('div', this).fadeIn();
	},function(){
		$('div', this).fadeOut();
	});

//functions:q


});

