$(document).ready(function(){						// add flash			$('#home_slideshow').flash(				{					src: '_slideshow/slideshow.swf',					height: 406,					width: 900,					base: '.',					wmode: 'transparent'				},				{ version: 10 }				);							// fancybox images			$("a.pic").fancybox();						$("a.inline").fancybox({					'hideOnContentClick': false,					'autoDimensions': false,					'autoScale': false,					width: 442,					height: 228				});							// contact popup	//			$('.content_hidden').hide();						// big buttons			$('.area_copy_holder').hide();						$('.btn_holder').each(function(){							$(this).click(function(){					$(this).addClass('btn_holder_active');					$(this).next().next().slideToggle('slow');				});							});			}); 
