// JavaScript Document
$(document).ready(function() {
	$(".testimony p").hide();
	if(thiselement = document.getElementById('customizedThemes')){
		jQuery.obuCompactor( "#customizedThemes", "h3", "p" );
	    if ($('#customizedThemes').length > 0 && location.hash) {
	        $(location.hash).click();
	    }
	}
});

function cleanHref(href) {
	if (href.indexOf('/') != -1) {
		href = href.substring(href.lastIndexOf('/')+1,href.length);
	}
	return href;
}

jQuery.obuCompactor = function ( list, listLink, item ) {
        $(list).find(listLink).addClass("link")
                .hover( function () {
                        $(this).addClass(" linkOver");
                        }, function () {
                        $(this).removeClass("linkOver");
                }).toggle( function () {
                        $(this).addClass(" linkOn").next(item).slideDown("slow");
						$(this).parent().find(".readMore").hide();
                        }, function () {
						$(this).parent().find(".readMore").show();
                        $(this).removeClass("linkOn").next(item).slideUp("slow");
        });
}
