(function($){

	$(document).ready(function(){
		processSlideshow("#slideshow", slideShow, 2000, 1000);
		$.scollPanels();
	});
	
	$.extend({
		
		scollPanels: function(){
		
			if($.getPage() == "business.asp" || $.getPage() == "company.asp"){
				$('.panel').each(function(){
					if($(this).find('div.panel-scroll').find('p').size() > 0){
						$(this).find('div.panel-scroll')
							   .css('display','none');
							   
						$(this).find('p:first')
							   .bind('click', function(){
							   		$(this).parent().find('div.panel-scroll').slideToggle();
							   });
					}
				});
			}
			
		},
		getPage: function(){
			var uri = window.location.href;
			return uri.substr(uri.lastIndexOf('/'),uri.lastIndexOf('/')).replace('/','');
		}
		
	});

})(jQuery);
