var cochin = {
	src: 'assets/sIFR3/sifrAKKURATnormal.swf'
	// Ratios are worked out by including the sifr-debug.js in the header
	// the js file must be below sifr.js and above sifr-config.js.
	// See below on how to get sifr-debug.js to work out the ratios for you.
	,ratios: [7, 1.32, 11, 1.31, 13, 1.24, 14, 1.25, 19, 1.23, 27, 1.2, 34, 1.19, 42, 1.18, 47, 1.17, 48, 1.18, 69, 1.17, 74, 1.16, 75, 1.17, 1.16]
}

sIFR.activate(cochin);

/* Work out ratios using code below. 
   Ratios must be worked out for each font you are using.
**********************************************************
	// This block of code would be done for each font
	// you are using.
	sIFR.debug.ratios(cochin, {
		selector: 'h1, h2'
	});
**********************************************************
*/
sIFR.replace(cochin, {
	selector: 'body.home h1'
	,transparent: true
	,css: ['.sIFR-root { color: #ffffff; }']
});
sIFR.replace(cochin, {
	selector: 'h1'
	,transparent: true
	,css: ['.sIFR-root { color: #303638; }']
});
sIFR.replace(cochin, {
	selector: 'h2'
	,transparent: true
	,css: ['.sIFR-root { color: #858788; }']
});