var hip = { 
	src: 'daddyo-hip.swf' 
	};
var square = { 
	src: 'daddyo-square.swf' 
	};

// Now you can set some configuration settings.
// See also <http://wiki.novemberborn.net/sifr3/JavaScript+Configuration>.
// One setting you probably want to use is `sIFR.useStyleCheck`. Before you do that,
// read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad>.

// sIFR.useStyleCheck = true;

sIFR.activate(hip,square);

sIFR.replace(hip, {
    selector: '#comingsoon h2'
    ,css: '.sIFR-root { color: #000000; text-align: center;  }'
    ,wmode: 'transparent' 
});
sIFR.replace(square, {
	selector: '#home #contentSecondary h2'
	,css: '.sIFR-root { color: #3d963b; text-align: right; }'
	,wmode: 'transparent'
});

sIFR.replace(square, {
	selector: '.contrast h2'
	,css: '.sIFR-root { color: #ff5900; }'
	,wmode: 'transparent'
});

sIFR.replace(square, {
	selector: '.hot h2'
	,css: '.sIFR-root { color: #ff0059; }'
	,wmode: 'transparent'
});

sIFR.replace(square, {
	selector: '.cool h2'
	,css: '.sIFR-root { color: #ff5900; }'
	,wmode: 'transparent'
});

sIFR.replace(square, {
	selector: '.contrast h3'
	,css: '.sIFR-root { color: #3d963b; }'
	,wmode: 'transparent'
});

sIFR.replace(square, {
	selector: '.hot h3'
	,css: '.sIFR-root { color: #ffff00; }'
	,wmode: 'transparent'
});

sIFR.replace(square, {
	selector: '.cool h3'
	,css: '.sIFR-root { color: #ff0059; }'
	,wmode: 'transparent'
});

sIFR.replace(square, {
	selector: 'h3'
	,css: '.sIFR-root { color: #ff7212; }'
	,wmode: 'transparent'
});

sIFR.replace(square, {
	selector: '.hot #contentMain h1'
	,css: '.sIFR-root { color: #ff0059; }'
	,wmode: 'transparent'
});

sIFR.replace(hip, {
    selector: '#footer h1'
    ,css: [
		  	'.sIFR-root { color: #ffffff; text-transform: uppercase; text-align: right; margin: 0; padding: 0; width: auto; vertical-align: center; }'
			,'a { text-decoration: none; color: #ffffff; }'
			,'a:link { text-decoration: none; color: #ffffff; }'
			,'a:hover { color: #ffff00; }'
		]
    ,wmode: 'transparent' 
	,offsetTop: '2'
});

sIFR.replace(hip, {
    selector: '.hot #navMain li, .contrast #navMain li'
    ,css: [
		  	'.sIFR-root { color: #000000; text-align: center; }'
			,'a { display: block; text-decoration: none; color: #000000; height:55px; width:65px; padding-left:5px; padding-right:5px; padding-top:20px; padding-bottom:5px; }'
			,'a:link { text-decoration: none; color: #000000; }'
			,'a:hover { background: url(images/hover-orange.png) no-repeat right top; color: #ffffff; }'
		]
    ,wmode: 'transparent' 
});
sIFR.replace(hip, {
    selector: '.cool #navMain li'
    ,css: [
		  	'.sIFR-root { color: #000000; text-align: center; }'
			,'a { display: block; text-decoration: none; color: #000000; height:55px; width:65px; padding-left:5px; padding-right:5px; padding-top:20px; padding-bottom:5px; }'
			,'a:link { text-decoration: none; color: #000000; }'
			,'a:hover { background: url(images/hover-yellow.png) no-repeat right top; color: #ffffff; }'
		]
    ,wmode: 'transparent' 
});

