
jQuery(document).ready
( 
    function()
		{
			
			globalFunc = {};			
					
			jQuery.fn.thumbOrder();	
			
			jQuery("#subnav .linkService").each(function(h){
				jQuery(this).addClass("link" + h).hover(
					function(){
						jQuery("img.thumb").hide()
						jQuery("img.thumb" + h).show()
					},
					function(){
						
					}					
				);
				
			})
				
		}
);


jQuery.fn.thumbOrder = function()
{
	jQuery("img.thumb").each(function(n)
		{
			jQuery(this).hide();
			jQuery(this).addClass("thumb" + n);
			jQuery("img.thumb0").show();
		});
}

jQuery(document).ready(
		function(){
			jQuery(".accordian").hide();
			jQuery(".contentsubnavleft_HP #subnav li.linkService a").click(
				function(){						
					jQuery(this).next(".accordian").slideToggle("slow");						
										
				}
			);
});			
