function ddSliderArrows() {
	
	//vars
	var next = jQuery('#slide-right');
	var prev = jQuery('#slide-left');
	var arrows = jQuery('#slide-right, #slide-left');
	
	//if the ddslider is there
	if(next.length > 0 && prev.length > 0) {
		
		//displays block and opacity 
		next.css({ display: 'block', opacity: 0 });
		prev.css({ display: 'block', opacity: 0 });
		
		jQuery('#slider-wrapper').hover(function() { arrows.stop().animate({ opacity: 1 }, 150); }, function() { arrows.stop().animate({ opacity: 0 }, 150); });
		
		//next.hover(function() { jQuery(this).stop().animate({ opacity: 1 }, 100); }, function() { jQuery(this).stop().animate({ opacity: 0 }, 100); });
		//prev.hover(function() { jQuery(this).stop().animate({ opacity: 1 }, 100); }, function() { jQuery(this).stop().animate({ opacity: 0 }, 100); });
		
	}
	
}
