// JavaScript Document

function cnf_homeinit () {
	// ---	events/actions
	$( '#icn-accessories' ).mouseover ( function () { cnf_rover ( this ) } );
	$( '#icn-accessories' ).mouseout ( function () { cnf_rout ( this ) } );
	
	$( '#icn-apparel' ).mouseover ( function () { cnf_rover ( this ) } );
	$( '#icn-apparel' ).mouseout ( function () { cnf_rout ( this ) } );
	
	$( '#icn-textiles' ).mouseover ( function () { cnf_rover ( this ) } );
	$( '#icn-textiles' ).mouseout ( function () { cnf_rout ( this ) } );
	
	$( '#icn-flview' ).mouseover ( function () { cnf_rover ( this ) } );
	$( '#icn-flview' ).mouseout ( function () { cnf_rout ( this ) } );
	
	// ---	animations
	$( '#iconnav' ).css ( 'display', 'none' );
	$( '#iconnav' ).fadeIn ( 1000 );
}
$( document ).ready ( cnf_homeinit );
