
	var bmcorporate = {
		src: 'includes/bmcorporate.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]   
	};
	var journal= {
		src: 'includes/flashfont.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(bmcorporate);
	   
		sIFR.replace(bmcorporate, {
		selector: 'h3.sifrtitlegreen,h4.sifrtitlegreen,h5.sifrtitlegreen'	
		,css: {
			'.sIFR-root': { 'color': '#548B44',  'font-weight': 'bold' }
		}		
		,wmode:'transparent'	  
		 ,selectable: false
		 
		});		
		
		sIFR.replace(bmcorporate, {
		selector: '.sifrgreenreal'	
		,css: {
			'.sIFR-root': { 'color': '#638F3E',  'font-weight': 'bold' }
		}		
		,wmode:'transparent'	  
		 ,selectable: false
		 
		});	
	//sIFR.activate(bmcorporate);
	   
		sIFR.replace(bmcorporate, {
		selector: 'h4.sifrtitlepuple,h3.sifrtitlepuple'	
		,css: {
			'.sIFR-root': { 'color': '#753971',  'font-weight': 'bold' }
		}		
		,wmode:'transparent'	  
		 ,selectable: false
		 
		});		
	//sIFR.activate(bmcorporate);
	   
		sIFR.replace(bmcorporate, {
		selector: '.sifrtitlebrown'	
		,css: {
			'.sIFR-root': { 'color': '#A19061',  'font-weight': 'bold' }
		}		
		,wmode:'transparent'	  
		 ,selectable: false
		 
		});		
		//sIFR.activate(bmcorporate);
	   
		sIFR.replace(bmcorporate, {
		selector: '.sifrtitlelightblue'	
		,css: {
			'.sIFR-root': { 'color': '#22A6C7',  'font-weight': 'bold' }
		}		
		,wmode:'transparent'	  
		 ,selectable: false
		 
		});		
		
		sIFR.replace(bmcorporate, {
		selector: '.sifrtitledarkgreen'	
		,css: {
			'.sIFR-root': { 'color': '#004731',  'font-weight': 'bold' }
		}		
		,wmode:'transparent'	  
		 ,selectable: false
		 
		});	
		
		sIFR.replace(bmcorporate, {
		selector: '.sifrdarkbrown'	
		,css: {
			'.sIFR-root': { 'color': '#8B6900',  'font-weight': 'bold' }
		}		
		,wmode:'transparent'	  
		 ,selectable: false
		 
		});		
		
		sIFR.activate(journal);
		sIFR.replace(journal, {
		selector: '.sifrjournalbrown'	
		,css: {
			'.sIFR-root': { 'color': '#8B6900',  'font-weight': 'bold','text-transform':'uppercase' }
		}		
		,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()
            
		 }
		
