﻿// JavaScript Document
function setblur(obj) {
	obj.blur();
}

function getchildclass(id) {
	var myliclass = $("li").filter( function(index) {
		return $(this).attr("rel") == "class" + id;
	} );
	if ( myliclass.children("ul:first").html() != "" ) {
		myliclass.children("ul:first").show().animate( { "height" : ( myliclass.children("ul:first").children("li").length * 28 ) + "px" } , { queue: false, duration: 1000, complete:function() { } } );;
	}
}
