how to change yellow image to blue image in tabs when clicked and hover by jquery or css
You can use CSS filter properties to do this with CSS.
img:hover {filter: hue-rotate(165deg);}
Adjust hue-rotate value if needed.