// JavaScript Document
var $j = jQuery.noConflict();
$j(document).ready(function(){
	$j(".siteselector li").hover(
	  function () {
		$j(this).children(".title").stop(true, false).animate({"backgroundColor": "#ffffff"}, 300);
		$j(this).children("ul").stop(true, false).animate({"height": "200"}, 300);
	  }, 
	  function () {
		$j(this).children(".title").stop(true, false).animate({"backgroundColor": "#e4e4e4"}, 300);
		$j(this).children("ul").stop(true, false).animate({"height": "0"}, 300);
	  }
	);
});
