//
// ------------------------------------------------------------------------------------------------
// init_banner
// dreas1@me.com
// April 2011
// ------------------------------------------------------------------------------------------------
//

$(document).ready(function(){	
	
	the_file_name = "../swf/bis_banner.swf" ;
		
	if (swfobject.hasFlashPlayerVersion("10")) {

		var att = { data:the_file_name, width:"980", height:"200" };
		var par = { menu:"true"};
		var id = "home_banner";
		var myFlashContent = swfobject.createSWF(att, par, id);
		
	}else{
		
		var text_to_show ='BIS Industrial Services is a leading industrial services supplier to the UK Process, Petrochemical and Power Industries.';
		
		$("#v2_section").text(text_to_show);
	
	};
	
		
});

//
// -----------------------------------------------------------------------------------
//

function  set_services_para(text_to_show){
	
	$(document).ready(function(){

		$('#v2_section').fadeOut('fast', function() {
			
			$("#v2_section").text(text_to_show);
			
			$('#v2_section').fadeIn('slow', function() {

			});
			
		});
		
   });
	
}

//
// -----------------------------------------------------------------------------------
//
