var duk = {};
duk.initSecondaryNavigation = function() {
	if (!jQuery.cookie('visited')) {
		var date = new Date();
		date.setTime(date.getTime() + (365 * 24 * 60 * 60 * 1000));
		jQuery.cookie('visited', '1', { path: '/', domain: 'jiayou360.com/mainsite', expires: date });
		jQuery("#tips_cfloor").show();
		jQuery("#tips_cfloor a").click(function(){
			jQuery("#tips_cfloor").hide();
			return false;
		});
	}

}
