/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){
	$("ul.sf-menu").superfish();
	$("div.adv").mouseover(
		function() {
			$(this).css('border-color', '#000000');
		}
	);
	$("div.adv").mouseout(
		function() {
			$(this).css('border-color', '#7D7B7B');
		}
	);
});


