$(document).ready(function(){
	var sections = $('.menuouter.chrome.moveable');
	sections.css({borderColor: '#ffffff'});
	$('.draghandle').mouseover(function(){
		var parentMoveable = $(this).closest('.menuouter.chrome.moveable');
		parentMoveable.stop();
		try
		{
		parentMoveable.animate({
			borderTopColor: '#aaaaaa',
			borderLeftColor: '#aaaaaa',
			borderRightColor: '#aaaaaa',
			borderBottomColor: '#aaaaaa'}, 'slow');
		}catch(e){}
	});
	$('.draghandle').mouseout(function(){
		var parentMoveable = $(this).closest('.menuouter.chrome.moveable');
		parentMoveable.stop();
		try{
		parentMoveable.animate({
			borderTopColor: '#ffffff',
			borderLeftColor: '#ffffff',
			borderRightColor: '#ffffff',
			borderBottomColor: '#ffffff'}, 'slow');
		}catch(e){}
	});
	
});