/*
 ***************************************
 *		jQuery for Home Page
 ***************************************
 */
function jQueryLocalFunctions()
{
/*
 *	Tabs: optional
 */
	$("#usual1 ul").idTabs();
/*
 *	Stripes: optional
 */
	$("dl.info dd").hide();  
	$("dl.info dt")
		.hover(
			function(){ $(this).addClass("over") },
			function(){ $(this).removeClass("over") }
			)
		.toggle(
			function(){
				$(this).next("dd").slideToggle("slow");
				$('span.moreless',this).css('background-image','url(images/theme/arrow-up.gif)');
				$('span.moreless',this).text('less');
				$('span.subject' ,this).css('font','italic 16px Georgia, "Times New Roman", Times, serif');
			},
			function(){
				$(this).next("dd").slideToggle("slow");
				$('span.moreless',this).css('background-image','url(images/theme/arrow-down.gif)')
				$('span.moreless',this).text('more');
				$('span.subject' ,this).css('font','normal 11px Verdana, Arial, Helvetica, sans-serif');
			});
	$("img.expandPage")
		.toggle(
			function(){ 
				$(this).attr('src','images/theme/collapse.gif');
				$(this).parents('.prodinfo')
					.each(
						function(){
							$('dl.info	dd'  ,this).show('slow');
							$('span.moreless',this).css('background-image','url(images/theme/arrow-up.gif)');
							$('span.moreless',this).text('less');
							$('span.subject' ,this).css('font','italic 16px Georgia, "Times New Roman", Times, serif');
						});
			},
			function(){
				$(this).attr('src','images/theme/expand.gif');
				$(this).parents('.prodinfo')
					.each(
						function(){
							$('dl.info	dd'  ,this).hide('slow');
							$('span.moreless',this).css('background-image','url(images/theme/arrow-down.gif)')
							$('span.moreless',this).text('more');
							$('span.subject' ,this).css('font','normal 11px Verdana, Arial, Helvetica, sans-serif');
						});
			});
	 $("span.pdfdoc a").attr("target","_blank").click(function() { this.blur(); });
}
