$(document).ready(function() {
						   $("#content-right ul li").hover(function() {
																	$(this).css({borderColor:"#a01014",backgroundImage:"url("+filePath+"img/bg_content-right_over.png)"});
																	},
															function() {
																	$(this).css({borderColor:"#d7d7d7",backgroundImage:"url("+filePath+"img/bg_content-right.png)"});
																	});
						   });
