$(document).ready(function(){ featuredcontentslider.init({ id: "slider", //id of main slider DIV contentsource: ["inline", ""], //Valid values: ["inline", ""] or ["ajax", "path_to_file"] toc: "markup", //Valid values: "#increment", "markup", ["label1", "label2", etc] nextprev: [""], //labels for "prev" and "next" links. Set to "" to hide. revealtype: "mouseover", //Behavior of pagination links to reveal the slides: "click" or "mouseover" enablefade: [true, 0.1], //[true/false, fadedegree] autorotate: [true, 4000] //[true/false, pausetime] }); $('.roll').mouseover(function() { $(".plus_info").css('color','red'); }); $('.roll').mouseout(function() { $(".plus_info").css('color','#000'); }); });