
/* jquery.exfixed.js
----------------------------------------------------------------------------*/
$(function(){
	$('#bgFlash').exFixed();
});


/* jquery.flatheights.js
----------------------------------------------------------------------------*/
$(function(){
	var sets = [], temp = [];
	$('#abc > div').each(function(i) {
		temp.push(this);
		if (i % 3 == 2) {
			sets.push(temp);
			temp = [];
		}
	});
	if (temp.length) sets.push(temp);
	$.each(sets, function() {
	$(this).flatHeights();
	});
});


/* background swap
----------------------------------------------------------------------------*/
$(function() {
    $('#topFooterInner').hover(
        function() {
            $(this).addClass('hover');
        },
        function() {
            $(this).removeClass('hover');
        }
    );
});


/* imgFade
----------------------------------------------------------------------------*/
$(document).ready(function(){
$("img.imgFade").fadeTo(0,1.0);
$("img.imgFade").hover(function(){
		$(this).fadeTo(150,0.7);
	},
	function(){
		$(this).fadeTo(150,1.0);
	});
});


/* curvycorners.js
----------------------------------------------------------------------------*/
/*
$(function(){
	var settings = {
		tl: { radius: 5 },
		tr: { radius: 5 },
		bl: { radius: 5 },
		br: { radius: 5 },
		antiAlias: true,
		autoPad: true
	}
	curvyCorners(settings, '.000');

	var settings2 = {
		tl: { radius: 5 },
		tr: { radius: 5 },
		bl: { radius: 5 },
		br: { radius: 5 },
		antiAlias: true,
		autoPad: true
	}
	curvyCorners(settings2, '.111, .222');
});
*/


