
	var subway = {
		src: 'includes/subway.swf',
	    ratios:[6, 1.49, 8, 1.5, 9, 1.44, 12, 1.45, 17, 1.42, 18, 1.39, 23, 1.4, 24, 1.37, 30, 1.38, 39, 1.37, 54, 1.36, 89, 1.35, 90, 1.34, 92, 1.35, 93, 1.34, 95, 1.35, 1.34]   
	};
	sIFR.activate(subway);
	sIFR.replace(subway, {
		selector: '.sifrdarkgreen'	
		,css:['.sIFR-root { color: #374C34; font-weight: bold}',
			'.sIFR-root a { color: #374C34; text-decoration: none; }',
			'.sIFR-root a:hover { color: #374C34; text-decoration: none; }',
			'.sIFR-root a:visited { color: #374C34; text-decoration: none; }']				
		,wmode:'transparent'	  
		 ,selectable: false
		 
	});		
	sIFR.replace(subway, {
		selector: '.sifrdarkgreen2'	
		,css:['.sIFR-root { color: #374C34; font-weight: normal}',
			'.sIFR-root a { color: #374C34; text-decoration: none; }',
			'.sIFR-root a:hover { color: #374C34; text-decoration: none; }',
			'.sIFR-root a:visited { color: #374C34; text-decoration: none; }']				
		,wmode:'transparent'	  
		 ,selectable: false
		 
	});		
	sIFR.replace(subway, {
		selector: '.sifrdarkgreencenter'	
		,css:['.sIFR-root { color: #374C34; font-weight: bold; text-align:center;}',
			'.sIFR-root a { color: #374C34; text-decoration: none; }',
			'.sIFR-root a:hover { color: #374C34; text-decoration: none; }',
			'.sIFR-root a:visited { color: #374C34; text-decoration: none; }']				
		,wmode:'transparent'	  
		 ,selectable: false
		 
	});		
		
	sIFR.replace(subway, {
		selector: '.sifrlightgreen'	
		,css:['.sIFR-root { color: #538B44; font-weight: bold}',
			'.sIFR-root a { color: #538B44; text-decoration: none; }',
			'.sIFR-root a:hover { color: #538B44; text-decoration: none; }',
			'.sIFR-root a:visited { color: #538B44; text-decoration: none; }']	
			
		,wmode:'transparent'	  
		,selectable: false
		 
	});	
	sIFR.replace(subway, {
		selector: '.centergreen'	
		,css:['.sIFR-root { color: #538B44; font-weight: bold;text-align:center}',
			'.sIFR-root a { color: #538B44; text-decoration: none; }',
			'.sIFR-root a:hover { color: #538B44; text-decoration: none; }',
			'.sIFR-root a:visited { color: #538B44; text-decoration: none; }']
			
		,wmode:'transparent'	  
		,selectable: false
		 
	});	
	sIFR.replace(subway, {
		selector: '.sifrwhire'	
		,css:['.sIFR-root { color: #ffffff; font-weight: bold}',
			'.sIFR-root a { color: #ffffff; text-decoration: none; }',
			'.sIFR-root a:hover { color: #ffffff; text-decoration: none; }',
			'.sIFR-root a:visited { color: #ffffff; text-decoration: none; }']		
		,wmode:'transparent'	  
		,selectable: false
		 
	});	
		
		
$("ul.thumb li").hover(function() {
	$(this).css({'z-index' : '10'}); /*Add a higher z-index value so this image stays on top*/ 
	$(this).find('img').addClass("hover").stop() /* Add class of "hover", then stop animation queue buildup*/
		.animate({
			marginTop: '-110px', /* The next 4 lines will vertically align this image */ 
			marginLeft: '-110px',
			top: '50%',
			left: '50%',
			width: '174px', /* Set new width */
			height: '174px', /* Set new height */
			padding: '20px'
		}, 200); /* this value of "200" is the speed of how fast/slow this hover animates */

	} , function() {
	$(this).css({'z-index' : '0'}); /* Set z-index back to 0 */
	$(this).find('img').removeClass("hover").stop()  /* Remove the "hover" class , then stop animation queue buildup*/
		.animate({
			marginTop: '0', /* Set alignment back to default */
			marginLeft: '0',
			top: '0',
			left: '0',
			width: '126px', /* Set width back to default */
			height: '126px', /* Set height back to default */
			padding: '2px'
		}, 400);
});

 var objprint=null;
		 var newop=null;
		 function printme(divid){
		    if (newop != null) {
		        if (newop.closed == false) {
			        newop.close()
		        }
	        }
		    objprint= document.getElementById(divid).innerHTML;
		    
		    newop= window.open("printme.htm")	
		    with (newop.document){
		        writeln('<html>');
		        writeln('<head>');
		        writeln('<link href="includes/bmconsumer.css" rel="stylesheet" type="text/css" />');
		        writeln('</head>');
                writeln('<body bgcolor="#FFFFFF">');
                writeln('<div class="mainprint">');
                writeln(objprint.replace(/DISPLAY: none/gi,''),'');
                
                writeln('</div>');               
                writeln('</body></html>');
		    }
		    newop.document.close();
		    newop.print()
            
		 }
		
