$(document).ready(function(){
	$('.wptSubmit').hover(
		function(){
			$(this).addClass('wptSubmitBlack');
		},
		function(){
			$(this).removeClass('wptSubmitBlack');
		}
	)
	$('.wptReadMore').each(function(){
		$(this).attr("mode","readmore");
		$(this).html($(this).attr("readmore"));
	}).click(function(){
		$(this).parent().find('li.hlpHideMe').toggle()
		if($(this).attr("mode") == "readmore"){
			$(this).html($(this).attr("readless"));			
			$(this).attr("mode","readless");
		}
		else{
			$(this).html($(this).attr("readmore"));			
			$(this).attr("mode","readmore");
		}
	});
	//onclick="$(this).parent().find('li.hlpHideMe').toggle()"

})

